From de659afea1088bf0a731458706a0ddc62fa6f708 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Andr=C3=A9n=20Zachrisson?= Date: Sun, 1 Nov 2015 22:32:53 +0100 Subject: [PATCH] Homogenize the Error: messages --- cue2pops.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cue2pops.c b/cue2pops.c index f6aeea4..28984b0 100644 --- a/cue2pops.c +++ b/cue2pops.c @@ -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;