diff options
author | Tor Andersson <tor@ghostscript.com> | 2009-03-11 15:56:44 +0100 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2009-03-11 15:56:44 +0100 |
commit | b3092ce4920ea6456788a595c5dd9a794f79eed6 (patch) | |
tree | b7f17240b7444676e47e9aed6de983d94fbb1bc0 /apps | |
parent | 5aaff8260abdaefdbf7a64d3e66b1928dfe5d726 (diff) | |
download | mupdf-b3092ce4920ea6456788a595c5dd9a794f79eed6.tar.xz |
Fix typo in getopt string.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/pdfshow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/pdfshow.c b/apps/pdfshow.c index 4d59c590..f9026938 100644 --- a/apps/pdfshow.c +++ b/apps/pdfshow.c @@ -177,7 +177,7 @@ int main(int argc, char **argv) char *password = ""; int c; - while ((c = getopt(argc, argv, "bdp:")) != -1) + while ((c = getopt(argc, argv, "d:bx")) != -1) { switch (c) { |