Browse Source

Missing newline

tags/v20240302
Emil 8 months ago
parent
commit
6acab4f1d5
No known key found for this signature in database GPG Key ID: 5432DB986FDBCF8A
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      baked.c

+ 1
- 1
baked.c View File

@@ -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);


Loading…
Cancel
Save