summaryrefslogtreecommitdiff
path: root/mj2
diff options
context:
space:
mode:
authorFrancois-Olivier Devaux <fodevaux@users.noreply.github.com>2004-10-08 07:08:25 +0000
committerFrancois-Olivier Devaux <fodevaux@users.noreply.github.com>2004-10-08 07:08:25 +0000
commit0d4a38f3a5032293fc7204ca3addf58062136b4e (patch)
tree809f362e531548c1edce4f24b1d3b51f074b40f8 /mj2
parent2410db2ae74faaa0c82e0fa85e6ebed75a99745e (diff)
Bug with -F argument fixed
Diffstat (limited to 'mj2')
-rw-r--r--mj2/frames_to_mj2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mj2/frames_to_mj2.c b/mj2/frames_to_mj2.c
index c1583777..e2c22cda 100644
--- a/mj2/frames_to_mj2.c
+++ b/mj2/frames_to_mj2.c
@@ -332,7 +332,7 @@ int main(int argc, char **argv)
while (1) {
int c = getopt(argc, argv,
- "i:o:r:q:f:t:n:c:b:x:p:s:d:h:P:S:E:M:R:T:C:I:W:F");
+ "i:o:r:q:f:t:n:c:b:x:p:s:d:h:P:S:E:M:R:T:C:I:W:F:");
if (c == -1)
break;
switch (c) {
@@ -604,7 +604,7 @@ int main(int argc, char **argv)
/* ------------------------------------------------------ */
case 'F': /* Video frame rate */
if (sscanf(optarg, "%d", &frame_rate) != 1) {
- fprintf(stderr, "-f argument error");
+ fprintf(stderr, "-F argument error");
return 1;
}
break;