summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2022-02-06 18:20:25 -0800
committerVito Caputo <vcaputo@pengaru.com>2022-02-06 18:21:19 -0800
commit3006963740924fb4eff32fb513fc3306c926ead7 (patch)
treec4a79b2165fd3dbee828f563a2e5ae5c05932002
parentc0cd48a1a6f5c9f4592f5ce215df9c798cb4720a (diff)
vmon: remove vestigal puts("DONE!")
I don't think I intended this to be permanent, though it might be nice to have /something/ printed to signify the transition to breaking the main loop. Something more appropriate can come back if necessary.
-rw-r--r--src/vmon.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/vmon.c b/src/vmon.c
index 59f89ad..b8b6046 100644
--- a/src/vmon.c
+++ b/src/vmon.c
@@ -837,7 +837,6 @@ int main(int argc, const char * const *argv)
vmon_process_event(vmon);
if (got_sigint > 2 || got_sigquit > 2) {
- puts ("DONE!");
vmon->done = 1;
} else if (got_sigint == 1) {
got_sigint++;
© All Rights Reserved