diff options
author | hunt <hunt> | 2005-07-11 06:57:26 +0000 |
---|---|---|
committer | hunt <hunt> | 2005-07-11 06:57:26 +0000 |
commit | 24a0bfe975384f1b43ecd64fa86f292db0263b31 (patch) | |
tree | 53ca1255d432e6e7ac0840c1ae6b104bffacc8cc /runtime/runtime.h | |
parent | 5ebb77e87b2d3bbab5810b7730a3432f9f221440 (diff) | |
download | systemtap-steved-24a0bfe975384f1b43ecd64fa86f292db0263b31.tar.gz systemtap-steved-24a0bfe975384f1b43ecd64fa86f292db0263b31.tar.xz systemtap-steved-24a0bfe975384f1b43ecd64fa86f292db0263b31.zip |
2005-07-10 Martin Hunt <hunt@redhat.com>
* runtime.h (init_module): Fix return value.
Diffstat (limited to 'runtime/runtime.h')
-rw-r--r-- | runtime/runtime.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/runtime.h b/runtime/runtime.h index 2460c406..62240e1f 100644 --- a/runtime/runtime.h +++ b/runtime/runtime.h @@ -69,6 +69,8 @@ int init_module(void) ret = probe_start(); if (ret < 0) _stp_transport_close(); + + return ret; } void cleanup_module(void) |