1
0
Fork 0
mirror of https://github.com/ErikAndren/cue2pops-mac.git synced 2025-04-19 15:38:04 +02:00

Fix indentation

This commit is contained in:
Erik Andrén Zachrisson 2015-11-01 22:06:44 +01:00
parent 6c856cb429
commit d4ffa2429e

View file

@ -510,7 +510,7 @@ int main(int argc, char **argv)
}
for(i = strlen(cue_ptr); i > 0; i--) { // Does the cue have the full BINARY path ?
if((cue_ptr[i] == '\\') || (cue_ptr[i] == '/')) { // YES !
if((cue_ptr[i] == '\\') || (cue_ptr[i] == '/')) { // YES !
strcpy(bin_path, cue_ptr);
break;
}