diff options
author | OBATA Akio <obache@wizdas.com> | 2020-08-10 18:29:10 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-08-12 21:42:55 +0900 |
commit | c136ff9700242052ed5125baf07072707df0453f (patch) | |
tree | 43717f7de86f2a64819a1e64838994824e0e6641 /tdeprint/cups/make_driver_db_cups.cpp | |
parent | 24a2027ee7caa515e24998fb21000dfe18f6ebcb (diff) | |
download | tdelibs-c136ff9700242052ed5125baf07072707df0453f.tar.gz tdelibs-c136ff9700242052ed5125baf07072707df0453f.zip |
Fix missing argments for drive parse filter on lpr
It was extended for compressed PPD support, but not refrected to lpr parts.
Signed-off-by: OBATA Akio <obache@wizdas.com>
(cherry picked from commit 15116d8f64b35a695bcabc92239667c8684dc545)
Diffstat (limited to 'tdeprint/cups/make_driver_db_cups.cpp')
-rw-r--r-- | tdeprint/cups/make_driver_db_cups.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdeprint/cups/make_driver_db_cups.cpp b/tdeprint/cups/make_driver_db_cups.cpp index 9b700111f..a5eb1b8e5 100644 --- a/tdeprint/cups/make_driver_db_cups.cpp +++ b/tdeprint/cups/make_driver_db_cups.cpp @@ -213,7 +213,7 @@ void initCompressedPpd(const char *dirname) // If we were to rerun initPpd here then all drivers would be duplicated! } -int parsePpdFile(const char *filename, const char *origin, const char *metadata, FILE *output_file) +int parsePpdFile(const char *filename, const char * /*origin*/, const char * /*metadata*/, FILE *output_file) { gzFile ppd_file; char line[4096], value[256], langver[64] = {0}, desc[256] = {0}; |