Fixed a compiler warning.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5337 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
920a3eb794
commit
5be3aeab7f
1 changed files with 4 additions and 4 deletions
|
@ -496,8 +496,8 @@ void DoHeader(void) {
|
|||
if (apple == 1) {
|
||||
|
||||
fprintf(outputSFile,
|
||||
"\t.byte %i << 4 | %i\n",
|
||||
myHead.structure + 2, strlen(myHead.dosname));
|
||||
"\t.byte %i << 4 | %u\n",
|
||||
myHead.structure + 2, (unsigned) strlen(myHead.dosname));
|
||||
|
||||
fillOut(myHead.dosname, 15, "0");
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue