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

Homogenize the Error: messages

This commit is contained in:
Erik Andrén Zachrisson 2015-11-01 22:32:53 +01:00
parent e6506eaa1e
commit de659afea1

View file

@ -672,7 +672,7 @@ int main(int argc, char **argv)
return 0;
}
if((track_count == 0) || (track_count != index1_count)) { // Huh ?
printf("Error : Cannot count tracks\n\n");
printf("Error: Cannot count tracks\n\n");
free(cue_buf);
free(bin_path);
free(headerbuf);
@ -1028,7 +1028,7 @@ int main(int argc, char **argv)
printf("Saving the virtual CD-ROM image. Please wait...\n");
if(!(vcd_file = fopen(vcd_name, "wb"))) {
printf("Error : Cannot write to %s\n\n", vcd_name);
printf("Error: Cannot write to %s\n\n", vcd_name);
free(bin_path);
free(headerbuf);
free(outbuf);
@ -1039,7 +1039,7 @@ int main(int argc, char **argv)
free(headerbuf);
if(!(vcd_file = fopen(vcd_name, "ab+"))) {
printf("Error : Cannot write to %s\n\n", vcd_name);
printf("Error: Cannot write to %s\n\n", vcd_name);
free(bin_path);
free(outbuf);
return 0;