diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | elaborate.cxx | 3 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2009-02-03 Mark Wielaard <mjw@redhat.com> + + * elaborate.cxx (match_node::find_and_build): Disambiguate error + messages. + 2009-02-02 Stan Cox <scox@redhat.com> * NEWS, stapprobes.5.in: Add process.label. diff --git a/elaborate.cxx b/elaborate.cxx index 3b4c944c..5678e8a7 100644 --- a/elaborate.cxx +++ b/elaborate.cxx @@ -395,7 +395,8 @@ match_node::find_and_build (systemtap_session& s, throw semantic_error(string("probe point mismatch at position ") + lex_cast<string> (pos) + - " (alternatives:" + alternatives + ")", + " (alternatives:" + alternatives + ")" + + " didn't find any wildcard matches", loc->tok); } } |