mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
fix compile error
stupid bug, printed % instead of %s
This commit is contained in:
@@ -32,7 +32,7 @@ SetSymfileName(char *name)
|
||||
sf = fopen(name, "w");
|
||||
|
||||
if (sf == NULL)
|
||||
errx(EX_CANTCREAT, "Cannot open symfile '%' : %s", name,
|
||||
errx(EX_CANTCREAT, "Cannot open symfile '%s' : %s", name,
|
||||
strerror(errno));
|
||||
|
||||
fprintf(sf, ";File generated by xLink v" LINK_VERSION "\n\n");
|
||||
|
||||
Reference in New Issue
Block a user