mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +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");
|
sf = fopen(name, "w");
|
||||||
|
|
||||||
if (sf == NULL)
|
if (sf == NULL)
|
||||||
errx(EX_CANTCREAT, "Cannot open symfile '%' : %s", name,
|
errx(EX_CANTCREAT, "Cannot open symfile '%s' : %s", name,
|
||||||
strerror(errno));
|
strerror(errno));
|
||||||
|
|
||||||
fprintf(sf, ";File generated by xLink v" LINK_VERSION "\n\n");
|
fprintf(sf, ";File generated by xLink v" LINK_VERSION "\n\n");
|
||||||
|
|||||||
Reference in New Issue
Block a user