diff mbox

[9/9] Add more descriptive comment for mismatch or end of test condition

Message ID 64739DD5-CBC0-4837-8635-E081D57385A5@gmail.com
State New
Headers show

Commit Message

Programmingkid April 25, 2017, 3:24 a.m. UTC
Replace the comment "mismatch, or end of test" with "called for a  
mismatch,
or for the end of a test". This describes what happens better.

Signed-off-by: John Arbuckle <programmingkidx@gmail.com>
---
  risu.c | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/risu.c b/risu.c
index e7cbd57..bd771b1 100644
--- a/risu.c
+++ b/risu.c
@@ -48,7 +48,7 @@  void master_sigill(int sig, siginfo_t *si, void *uc)
           advance_pc(uc);
           return;
        default:
-         /* mismatch, or end of test */
+         /* called for a mismatch, or for the end of a test */
           siglongjmp(jmpbuf, 1);
     }
  }