aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2026-04-13 00:15:32 -0400
committerB. Watson <urchlay@slackware.uk>2026-04-13 00:15:45 -0400
commit7a0ae36af58e684b4108f817a15000d09adf1722 (patch)
treebc98bd9681c162f714580e3113d1e390eed56937
parent8f0952c6939049ec1dfe3fca3d6be40ea6d8f9e5 (diff)
downloadfujinet-chat-7a0ae36af58e684b4108f817a15000d09adf1722.tar.gz
Save another few bytes in cmd.c. 7668 bytes free.
-rw-r--r--src/cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd.c b/src/cmd.c
index 5ca3a98..9055c33 100644
--- a/src/cmd.c
+++ b/src/cmd.c
@@ -172,7 +172,7 @@ static void do_quit(void) {
static void pause(void) {
OS.rtclok[2] = 0;
- while(OS.rtclok[2] < timers.hz)
+ while(OS.rtclok[2] != timers.hz)
/* NOP */;
}