summaryrefslogtreecommitdiffstats
path: root/buildrun.cxx
diff options
context:
space:
mode:
authorDave Brolley <brolley@redhat.com>2009-09-03 19:53:24 -0400
committerDave Brolley <brolley@redhat.com>2009-09-03 19:53:24 -0400
commita5d268f35032292b8f85cc75a316930ed0b95aab (patch)
treedd78d073ab80624478e77eebab3c5e9767524faa /buildrun.cxx
parent8402bcf68e5321b3459cbbbd27d5111bb184922e (diff)
parentdf56da84549816b15a1f7aea3c9f71de2b2001ad (diff)
downloadsystemtap-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 'buildrun.cxx')
-rw-r--r--buildrun.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/buildrun.cxx b/buildrun.cxx
index a40dab15..6bef4095 100644
--- a/buildrun.cxx
+++ b/buildrun.cxx
@@ -363,10 +363,10 @@ run_pass (systemtap_session& s)
staprun_cmd += "-c " + cmdstr_quoted(s.cmd) + " ";
if (s.target_pid)
- staprun_cmd += "-t " + stringify(s.target_pid) + " ";
+ staprun_cmd += "-t " + lex_cast(s.target_pid) + " ";
if (s.buffer_size)
- staprun_cmd += "-b " + stringify(s.buffer_size) + " ";
+ staprun_cmd += "-b " + lex_cast(s.buffer_size) + " ";
if (s.need_uprobes)
staprun_cmd += "-u ";
@@ -390,7 +390,7 @@ make_tracequery(systemtap_session& s, string& name,
const vector<string>& extra_headers)
{
static unsigned tick = 0;
- string basename("tracequery_kmod_" + lex_cast<string>(++tick));
+ string basename("tracequery_kmod_" + lex_cast(++tick));
// create a subdirectory for the module
string dir(s.tmpdir + "/" + basename);
@@ -461,7 +461,7 @@ static int
make_typequery_kmod(systemtap_session& s, const string& header, string& name)
{
static unsigned tick = 0;
- string basename("typequery_kmod_" + lex_cast<string>(++tick));
+ string basename("typequery_kmod_" + lex_cast(++tick));
// create a subdirectory for the module
string dir(s.tmpdir + "/" + basename);
@@ -519,7 +519,7 @@ make_typequery_umod(systemtap_session& s, const string& header, string& name)
{
static unsigned tick = 0;
- name = s.tmpdir + "/typequery_umod_" + lex_cast<string>(++tick) + ".so";
+ name = s.tmpdir + "/typequery_umod_" + lex_cast(++tick) + ".so";
// make the module
//