diff options
author | Josh Stone <jistone@redhat.com> | 2009-04-24 14:28:26 -0700 |
---|---|---|
committer | Josh Stone <jistone@redhat.com> | 2009-04-24 14:28:26 -0700 |
commit | 8f497c23fd73345bd73b085a853f9c8be548715c (patch) | |
tree | 4f7e425fa878370e27f5cd3277b4f5f1722d6622 /tapsets.cxx | |
parent | af6b0601a7b65842fd639d1d712d77fa69b18065 (diff) | |
download | systemtap-steved-8f497c23fd73345bd73b085a853f9c8be548715c.tar.gz systemtap-steved-8f497c23fd73345bd73b085a853f9c8be548715c.tar.xz systemtap-steved-8f497c23fd73345bd73b085a853f9c8be548715c.zip |
Tweak error message in kprobe.function registration
Diffstat (limited to 'tapsets.cxx')
-rw-r--r-- | tapsets.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tapsets.cxx b/tapsets.cxx index 4ab61942..d16ae487 100644 --- a/tapsets.cxx +++ b/tapsets.cxx @@ -8588,7 +8588,7 @@ kprobe_derived_probe_group::emit_module_init (systemtap_session& s) s.op->newline(1) << "sdp->registered_p = 0;"; s.op->newline() << "if (rc == -EINVAL)"; s.op->newline() << "{"; - s.op->newline() << " _stp_error (\"Error registering kprobe,possibly an incorrect name %s OR addr = %p, rc = %d \", sdp->symbol_string, sdp->address, rc);"; + s.op->newline() << " _stp_error (\"Error registering kprobe, possibly an incorrect name %s OR addr = %p, rc = %d \", sdp->symbol_string, sdp->address, rc);"; s.op->newline() << " atomic_set (&session_state, STAP_SESSION_ERROR);"; s.op->newline() << " goto out;"; s.op->newline() << "}"; |