mirror of
https://github.com/cc65/cc65.git
synced 2024-12-23 04:30:10 +00:00
Fixed a DJGPP warning
git-svn-id: svn://svn.cc65.org/cc65/trunk@445 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
cc9a01777e
commit
56489eb834
@ -371,12 +371,12 @@ int a, b;
|
||||
setLen(myHead.author,62);
|
||||
fprintf(outputSFile,
|
||||
".byte \"%s\"\n\t\t.byte 0\n\t\t.res (63-%i)\n\n\t\t",
|
||||
myHead.author, strlen(myHead.author)+1);
|
||||
myHead.author, (int) (strlen(myHead.author)+1));
|
||||
|
||||
setLen(myHead.info, 95);
|
||||
fprintf(outputSFile,
|
||||
".byte \"%s\"\n\t\t.byte 0\n\t\t.res (96-%i)\n\n",
|
||||
myHead.info, strlen(myHead.info)+1);
|
||||
myHead.info, (int) (strlen(myHead.info)+1));
|
||||
|
||||
if (fclose (outputSFile)!=0)
|
||||
Error("error closing %s: %s\n",outputSName,strerror (errno));
|
||||
|
Loading…
Reference in New Issue
Block a user