"GOT", but the "O" is a cute, smiling pufferfish. Index | Thread | Search

From:
Johannes Thyssen Tishman <johannes@thyssentishman.com>
Subject:
gotsys: print newline in usage string of apply command
To:
gameoftrees@openbsd.org
Date:
Wed, 19 Nov 2025 10:13:49 +0000

Download raw body.

Thread
Bumped into this while writing my previous diff.

commit 414e93f1fc65b3df23c8fbaeaa334ffdab1f75b1
from: Johannes Thyssen Tishman <jtt@openbsd.org>
date: Tue Nov 18 17:58:15 2025 UTC

gotsys: print newline in usage string of apply command

M  gotsys/gotsys.c  |  1+  1-

1 file changed, 1 insertion(+), 1 deletion(-)

commit - 7aba215b4c8f0122161bf51177ddf8c07c887193
commit + 414e93f1fc65b3df23c8fbaeaa334ffdab1f75b1
blob - e984d13834daccca804ab945569fb2bd305b85c4
blob + 74a5b2285673d08d23af1730c113c137d0f39ee9
--- gotsys/gotsys.c
+++ gotsys/gotsys.c
@@ -165,7 +165,7 @@ usage_apply(int status)
 {
 	FILE *fp = (status == 0) ? stdout : stderr;
 	fprintf(fp, "usage: %s apply [-f socket] [-r repository] "
-	    "[-c commit] [-w] [filename]", getprogname());
+	    "[-c commit] [-w] [filename]\n", getprogname());
 	exit(status);
 }