summaryrefslogtreecommitdiff
path: root/utils/pdfseparate.cc
diff options
context:
space:
mode:
authorAlbert Astals Cid <aacid@kde.org>2017-09-16 18:01:49 +0200
committerAlbert Astals Cid <aacid@kde.org>2017-09-16 18:16:39 +0200
commit0790dd3afb8370aebca8e7e154bbd2b5ae5cd5a2 (patch)
treeb257dda47801c08cdc6cd057f049b1ef729a8939 /utils/pdfseparate.cc
parentafd91b148d3d0ba025821740ff4c075b1de2fdc5 (diff)
Fix missing-declarations warnings
... and add it to default warning set
Diffstat (limited to 'utils/pdfseparate.cc')
-rw-r--r--utils/pdfseparate.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/pdfseparate.cc b/utils/pdfseparate.cc
index a6f1d5ec..30b524ff 100644
--- a/utils/pdfseparate.cc
+++ b/utils/pdfseparate.cc
@@ -48,7 +48,7 @@ static const ArgDesc argDesc[] = {
{NULL}
};
-bool extractPages (const char *srcFileName, const char *destFileName) {
+static bool extractPages (const char *srcFileName, const char *destFileName) {
char pathName[4096];
GooString *gfileName = new GooString (srcFileName);
PDFDoc *doc = new PDFDoc (gfileName, NULL, NULL, NULL);