diff options
author | B. Watson <urchlay@slackware.uk> | 2025-05-11 05:45:19 -0400 |
---|---|---|
committer | B. Watson <urchlay@slackware.uk> | 2025-05-11 05:45:19 -0400 |
commit | 0e0be2f3f5dcbcbabd6656a843dfacce6811f63f (patch) | |
tree | 633c7c12852271e41a2c85cc0fe8769c0f2021ba /marsond.c | |
parent | fe074451e1e993a3ab1b18ac29d434a18970d344 (diff) | |
download | marsond-0e0be2f3f5dcbcbabd6656a843dfacce6811f63f.tar.gz |
fix debug startup message.
Diffstat (limited to 'marsond.c')
-rw-r--r-- | marsond.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -296,10 +296,11 @@ int main(int argc, char **argv) { struct input_event ev; set_self(argv[0]); - debug("starting up"); parse_args(argc, argv); + debug("marsond v" VERSION " starting up"); + if(pause_ms > 0) { debug("pausing %dms due to -p option"); usleep(pause_ms * 1000); |