commit 8fdad1798e19c5c53939602cea43375cd9013965 parent a7100b6fe92d300e08a3a98962c91c71477fd482 Author: Nihal Jere <nihal@nihaljere.xyz> Date: Wed, 29 Sep 2021 14:00:19 -0500 end errors with newline Diffstat:
M | npm.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/npm.c b/npm.c @@ -56,7 +56,7 @@ get_password(char *buf) void error(const char *s) { - fprintf(stderr, "%s: %s", argv0, s); + fprintf(stderr, "%s: %s\n", argv0, s); } void