summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStan Cox <scox@redhat.com>2008-10-09 17:09:18 -0400
committerStan Cox <scox@redhat.com>2008-10-09 17:09:18 -0400
commit79bc46910cec133b913c90273f310c949ac01f13 (patch)
treeb5668a3b3eb8e4b224e595808e7fbe3d2a5d38d4
parente2607b19ce56830d64affed6a8ab169697bf2ccf (diff)
downloadsystemtap-steved-79bc46910cec133b913c90273f310c949ac01f13.tar.gz
systemtap-steved-79bc46910cec133b913c90273f310c949ac01f13.tar.xz
systemtap-steved-79bc46910cec133b913c90273f310c949ac01f13.zip
Fix line match error message typo.
-rw-r--r--ChangeLog4
-rw-r--r--tapsets.cxx2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 8b1645e4..e9c61113 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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());
}
}