Missing newline

This commit is contained in:
Emil 2023-09-28 18:39:38 +00:00
parent e7ab816787
commit 6acab4f1d5
No known key found for this signature in database
GPG Key ID: 5432DB986FDBCF8A

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