summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <stefan@osg.samsung.com>2015-11-10 16:10:19 +0100
committerStefan Schmidt <stefan@osg.samsung.com>2015-11-10 16:10:19 +0100
commit43d6926fbd61d73bdfb15d6d5aded3da7fa80bc7 (patch)
tree576a417f5807df3cb6f110f7fcff40bb775085e4
parentb92ae5455f9477d8f703032a1038f223d4b25c9b (diff)
downloadevas_generic_loaders-43d6926fbd61d73bdfb15d6d5aded3da7fa80bc7.tar.gz
pdf: avoid shadowing a global varibale by renaming oe in local scope
The global page variable is actually a poppler type and the local one only the page number as int.
-rw-r--r--src/bin/pdf/main.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/bin/pdf/main.cpp b/src/bin/pdf/main.cpp
index e33e18b..6b1de13 100644
--- a/src/bin/pdf/main.cpp
+++ b/src/bin/pdf/main.cpp
@@ -214,7 +214,7 @@ main(int argc, char **argv)
int i;
int size_w = 0, size_h = 0;
int head_only = 0;
- int page = 0;
+ int page_num = 0;
if (argc < 2) return -1;
// file is ALWAYS first arg, other options come after
@@ -227,7 +227,7 @@ main(int argc, char **argv)
else if (!strcmp(argv[i], "-key"))
{
i++;
- page = atoi(argv[i]);
+ page_num = atoi(argv[i]);
i++;
}
else if (!strcmp(argv[i], "-opt-scale-down-by"))
@@ -251,7 +251,7 @@ main(int argc, char **argv)
}
D("dpi....: %f\n", dpi);
- D("page...: %d\n", page);
+ D("page...: %d\n", page_num);
// This is a funny hack to call an external tool to generate a pdf that will then be processed by poppler
extension = strrchr(file, '.');
@@ -306,7 +306,7 @@ main(int argc, char **argv)
// Now process the pdf (or the generated pdf)
D("poppler_file_init\n");
- if (!poppler_init(file, page, size_w, size_h))
+ if (!poppler_init(file, page_num, size_w, size_h))
return -1;
D("poppler_file_init done\n");