diff options
author | Stan Cox <scox@redhat.com> | 2008-10-09 17:09:18 -0400 |
---|---|---|
committer | Stan Cox <scox@redhat.com> | 2008-10-09 17:09:18 -0400 |
commit | 79bc46910cec133b913c90273f310c949ac01f13 (patch) | |
tree | b5668a3b3eb8e4b224e595808e7fbe3d2a5d38d4 | |
parent | e2607b19ce56830d64affed6a8ab169697bf2ccf (diff) | |
download | systemtap-steved-79bc46910cec133b913c90273f310c949ac01f13.tar.gz systemtap-steved-79bc46910cec133b913c90273f310c949ac01f13.tar.xz systemtap-steved-79bc46910cec133b913c90273f310c949ac01f13.zip |
Fix line match error message typo.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | tapsets.cxx | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2008-10-09 Stan Cox <scox@redhat.com> + + * tapsets.cxx (query_cu): Fix typo. + 2008-10-06 Wenji Huang <wenji.huang@oracle.com> PR 4886 diff --git a/tapsets.cxx b/tapsets.cxx index a5a62c7a..3a70936f 100644 --- a/tapsets.cxx +++ b/tapsets.cxx @@ -3799,7 +3799,7 @@ query_cu (Dwarf_Die * cudie, void * arg) { stringstream msg; msg << "address 0x" << hex << queryaddr - << "does not match the begining of a statement"; + << " does not match the beginning of a statement"; throw semantic_error(msg.str()); } } |