]> sourceware.org Git - systemtap.git/commitdiff
2005-07-10 Martin Hunt <hunt@redhat.com>
authorhunt <hunt>
Mon, 11 Jul 2005 06:57:26 +0000 (06:57 +0000)
committerhunt <hunt>
Mon, 11 Jul 2005 06:57:26 +0000 (06:57 +0000)
* runtime.h (init_module): Fix return value.

runtime/ChangeLog
runtime/runtime.h

index c45912abdacab374a00cd6b9ae470291d29abe7a..74a5808eea8eb3fa7b7300246bae9ac557dacb9c 100644 (file)
@@ -1,3 +1,7 @@
+2005-07-10  Martin Hunt  <hunt@redhat.com>
+
+       * runtime.h (init_module): Fix return value.
+
 2005-07-08  Martin Hunt  <hunt@redhat.com>
 
        * runtime.h: Move some common pieces of modules into this file.
index 2460c40678ec6c9b63ddb35887ad79fa5e8b9c70..62240e1f97cbb6e3705c888f53db5a8d8501cf95 100644 (file)
@@ -69,6 +69,8 @@ int init_module(void)
   ret = probe_start();
   if (ret < 0)
     _stp_transport_close();
+
+  return ret;
 }
 
 void cleanup_module(void)
This page took 0.188368 seconds and 5 git commands to generate.