aboutsummaryrefslogtreecommitdiffstats
path: root/movie.c
diff options
context:
space:
mode:
authorSteve Slaven <bpk@hoopajoo.net>2005-03-21 18:40:47 (GMT)
committerSteve Slaven <bpk@hoopajoo.net>2005-03-21 18:40:47 (GMT)
commitcb2555e19237930a25989a7cd2bee4589f1d515d (patch)
tree524bf902278ca892821a6be886ac3b51cfa9910f /movie.c
parent22e2e8b44054a4e95dd473079f0e7800284b0d20 (diff)
downloadpowwow-cb2555e19237930a25989a7cd2bee4589f1d515d.zip
powwow-cb2555e19237930a25989a7cd2bee4589f1d515d.tar.gz
powwow-cb2555e19237930a25989a7cd2bee4589f1d515d.tar.bz2
Convert all `' to "" as per the powwow-1.2.6-dain patch. Note I did not apply
the patch since 1.2.7 has some differences to 1.2.5 with regard to command handling and things, so I'm applying the diff parts by hand mostly
Diffstat (limited to 'movie.c')
-rw-r--r--movie.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/movie.c b/movie.c
index 093fd31..e88d5ee 100644
--- a/movie.c
+++ b/movie.c
@@ -30,7 +30,7 @@ int argc; char *argv[];
if (strstr(argv[0], "movie_play"))
play = 1;
else if (!strstr(argv[0], "movie2ascii")) {
- fprintf(stderr, "Please run this program as `movie_play' or `movie2ascii'\n");
+ fprintf(stderr, "Please run this program as \"movie_play\" or \"movie2ascii\"\n");
return 1;
}
@@ -39,7 +39,7 @@ int argc; char *argv[];
infile = fopen(argv[1], "rb");
outfile = stdout;
if (infile == NULL) {
- fprintf(stderr, "Error opening input file `%s'\n", argv[1]);
+ fprintf(stderr, "Error opening input file \"%s\"\n", argv[1]);
return 1;
}
} else {
@@ -51,11 +51,11 @@ int argc; char *argv[];
infile = fopen(argv[1], "rb");
outfile = fopen(argv[2], "wb");
if (infile == NULL) {
- fprintf(stderr, "Error opening input file `%s'\n", argv[1]);
+ fprintf(stderr, "Error opening input file \"%s\"\n", argv[1]);
return 1;
}
if (outfile == NULL) {
- fprintf(stderr, "Error opening output file `%s'\n", argv[2]);
+ fprintf(stderr, "Error opening output file \"%s\"\n", argv[2]);
return 1;
}
} else {