mirror of
https://github.com/ErikAndren/cue2pops-mac.git
synced 2025-04-19 15:38:04 +02:00
Silence another warning
This commit is contained in:
parent
ff28a9f6c4
commit
ae9222cc1a
1 changed files with 1 additions and 1 deletions
|
@ -501,7 +501,7 @@ int main(int argc, char **argv)
|
|||
for(i = strlen(dumpaddr); i > 0; i--) {
|
||||
if(dumpaddr[i] == 0x5C) break;
|
||||
}
|
||||
for(i = i+1; i < strlen(dumpaddr); i++) dumpaddr[i] = 0x00; // How kewl is dat ?
|
||||
for(i = i+1; (unsigned long) i < strlen(dumpaddr); i++) dumpaddr[i] = 0x00; // How kewl is dat ?
|
||||
/* Me no liek strncat */
|
||||
i = strlen(dumpaddr);
|
||||
strcpy(dumpaddr + i, ptr);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue