diff options
author | Dave Brolley <brolley@redhat.com> | 2009-09-03 19:53:24 -0400 |
---|---|---|
committer | Dave Brolley <brolley@redhat.com> | 2009-09-03 19:53:24 -0400 |
commit | a5d268f35032292b8f85cc75a316930ed0b95aab (patch) | |
tree | dd78d073ab80624478e77eebab3c5e9767524faa /staptree.cxx | |
parent | 8402bcf68e5321b3459cbbbd27d5111bb184922e (diff) | |
parent | df56da84549816b15a1f7aea3c9f71de2b2001ad (diff) | |
download | systemtap-steved-a5d268f35032292b8f85cc75a316930ed0b95aab.tar.gz systemtap-steved-a5d268f35032292b8f85cc75a316930ed0b95aab.tar.xz systemtap-steved-a5d268f35032292b8f85cc75a316930ed0b95aab.zip |
Merge branch 'master' of ssh://sources.redhat.com/git/systemtap
Diffstat (limited to 'staptree.cxx')
-rw-r--r-- | staptree.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/staptree.cxx b/staptree.cxx index b4975017..090f0bd3 100644 --- a/staptree.cxx +++ b/staptree.cxx @@ -101,7 +101,7 @@ probe::probe (): body (0), tok (0) { static unsigned last_probeidx = 0; - this->name = string ("probe_") + lex_cast<string>(last_probeidx ++); + this->name = string ("probe_") + lex_cast(last_probeidx ++); } |