summaryrefslogtreecommitdiff
path: root/pktdumper.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-06-12 09:29:25 +0000
committerDiego Biurrun <diego@biurrun.de>2007-06-12 09:29:25 +0000
commit755bfeabccbba9ae1b565b11d645b8e4fe139fa8 (patch)
treedbd398273c82bc49803b6143e6942e86dd3f3d25 /pktdumper.c
parent26ef3220cf6ad4a3cb1580086c244394f5aa3094 (diff)
misc spelling fixes
Originally committed as revision 9289 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'pktdumper.c')
-rw-r--r--pktdumper.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pktdumper.c b/pktdumper.c
index d43f46b457..04488caa45 100644
--- a/pktdumper.c
+++ b/pktdumper.c
@@ -46,13 +46,13 @@ int main(int argc, char **argv)
AVPacket pkt;
int64_t pktnum = 0;
int64_t maxpkts = 0;
- int dontquit = 0;
+ int donotquit = 0;
int nowrite = 0;
int err;
if ((argc > 1) && !strncmp(argv[1], "-", 1)) {
if (strchr(argv[1], 'w'))
- dontquit = 1;
+ donotquit = 1;
if (strchr(argv[1], 'n'))
nowrite = 1;
argv++;
@@ -110,7 +110,7 @@ int main(int argc, char **argv)
break;
}
- while (dontquit)
+ while (donotquit)
sleep(60);
return 0;