diff options
-rw-r--r-- | runtime/ChangeLog | 4 | ||||
-rw-r--r-- | runtime/runtime.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/runtime/ChangeLog b/runtime/ChangeLog index c45912ab..74a5808e 100644 --- a/runtime/ChangeLog +++ b/runtime/ChangeLog @@ -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. 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) |