summaryrefslogtreecommitdiff
path: root/apps/unix/x11pdf.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/unix/x11pdf.c')
-rw-r--r--apps/unix/x11pdf.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/unix/x11pdf.c b/apps/unix/x11pdf.c
index f2290388..d19e902f 100644
--- a/apps/unix/x11pdf.c
+++ b/apps/unix/x11pdf.c
@@ -516,21 +516,21 @@ int main(int argc, char **argv)
int wasshowingpage;
struct timeval tmo, tmo_at;
- while ((c = getopt(argc, argv, "d:z:p:")) != -1)
+ while ((c = fz_getopt(argc, argv, "d:z:p:")) != -1)
{
switch (c)
{
- case 'd': password = optarg; break;
- case 'z': zoom = atof(optarg); break;
- case 'p': pageno = atoi(optarg); break;
+ case 'd': password = fz_optarg; break;
+ case 'z': zoom = atof(fz_optarg); break;
+ case 'p': pageno = atoi(fz_optarg); break;
default: usage();
}
}
- if (argc - optind == 0)
+ if (argc - fz_optind == 0)
usage();
- filename = argv[optind++];
+ filename = argv[fz_optind++];
fz_cpudetect();
fz_accelerate();