]> git.xolatile.top Git - emil-bake.git/commitdiff
Missing newline
authorEmil <emilwilliams@tuta.io>
Thu, 28 Sep 2023 18:39:38 +0000 (18:39 +0000)
committerEmil <emilwilliams@tuta.io>
Thu, 28 Sep 2023 18:39:38 +0000 (18:39 +0000)
baked.c

diff --git a/baked.c b/baked.c
index dcecdd9bc0e7a24ccaa5192d9db9ea370bf613ae..35a70dafa1ca6663158b883d540f28bbf30862c0 100644 (file)
--- a/baked.c
+++ b/baked.c
@@ -84,7 +84,7 @@ find_region(const char * fn)
 
   if (!(start = find(buf,   START))
   ||  !(stop  = find(start, STOP)))
-  { fprintf(stderr, "No usable format located in '%s'", fn); free(buf); return NULL; }
+  { fprintf(stderr, "No usable format located in '%s'\n", fn); free(buf); return NULL; }
 
   len = stop - start - strlen(STOP);
   memmove(buf, start, len);