diff options
Diffstat (limited to 'apps/pdfdebug.c')
-rw-r--r-- | apps/pdfdebug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/pdfdebug.c b/apps/pdfdebug.c index 2a18ade7..bb2d57e2 100644 --- a/apps/pdfdebug.c +++ b/apps/pdfdebug.c @@ -7,7 +7,7 @@ static int doprintxref = 0; void usage() { - fprintf(stderr, "usage: pdfdebug [-dxs] [-u password] file.pdf [oid ...]\n"); + fprintf(stderr, "usage: pdfdebug [-dx] [-u password] file.pdf [oid ...]\n"); exit(1); } @@ -119,7 +119,7 @@ int main(int argc, char **argv) pdf_xref *xref; int c; - while ((c = getopt(argc, argv, "drxopu:")) != -1) + while ((c = getopt(argc, argv, "dxu:")) != -1) { switch (c) { |