Fixed a compiler warning.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5337 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2011-12-28 13:29:09 +00:00
parent 920a3eb794
commit 5be3aeab7f

View file

@ -496,8 +496,8 @@ void DoHeader(void) {
if (apple == 1) { if (apple == 1) {
fprintf(outputSFile, fprintf(outputSFile,
"\t.byte %i << 4 | %i\n", "\t.byte %i << 4 | %u\n",
myHead.structure + 2, strlen(myHead.dosname)); myHead.structure + 2, (unsigned) strlen(myHead.dosname));
fillOut(myHead.dosname, 15, "0"); fillOut(myHead.dosname, 15, "0");