summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhunt <hunt>2007-05-24 18:32:50 +0000
committerhunt <hunt>2007-05-24 18:32:50 +0000
commitfd51e222186715f827bad67c5327ac0d847eaca5 (patch)
tree5ccf23433e9365c70f35ad883105771cb7ca8bb6
parenta563f35899d3d6153542f19f8b32c22f64bd35f1 (diff)
downloadsystemtap-steved-fd51e222186715f827bad67c5327ac0d847eaca5.tar.gz
systemtap-steved-fd51e222186715f827bad67c5327ac0d847eaca5.tar.xz
systemtap-steved-fd51e222186715f827bad67c5327ac0d847eaca5.zip
2007-05-24 Martin Hunt <hunt@redhat.com>
* mainloop.c (cleanup_and_exit): Fix typo.
-rw-r--r--runtime/staprun/ChangeLog4
-rw-r--r--runtime/staprun/mainloop.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/runtime/staprun/ChangeLog b/runtime/staprun/ChangeLog
index d30551cd..c4cca77f 100644
--- a/runtime/staprun/ChangeLog
+++ b/runtime/staprun/ChangeLog
@@ -1,3 +1,7 @@
+2007-05-24 Martin Hunt <hunt@redhat.com>
+
+ * mainloop.c (cleanup_and_exit): Fix typo.
+
2007-05-22 Martin Hunt <hunt@redhat.com>
* mainloop.c (init_staprun): Change dbug() call.
diff --git a/runtime/staprun/mainloop.c b/runtime/staprun/mainloop.c
index ded4325d..008efd74 100644
--- a/runtime/staprun/mainloop.c
+++ b/runtime/staprun/mainloop.c
@@ -290,7 +290,7 @@ void cleanup_and_exit (int closed)
/* what about child processes? we will wait for them here. */
err = waitpid(-1, NULL, WNOHANG);
if (err >= 0)
- fprintf(stderr,"\nWaititing for processes to exit\n");
+ fprintf(stderr,"\nWaiting for processes to exit\n");
while(wait(NULL) > 0) ;
if (use_old_transport)