mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
testcommon.c: Suppress unused args warning in testUtilCmpPngs if NO_PNG
This commit is contained in:
parent
d81b5db271
commit
7a7210cfa1
@ -1208,7 +1208,9 @@ int testUtilExists(char *filename) {
|
|||||||
|
|
||||||
int testUtilCmpPngs(char *png1, char *png2) {
|
int testUtilCmpPngs(char *png1, char *png2) {
|
||||||
int ret = -1;
|
int ret = -1;
|
||||||
#ifndef NO_PNG
|
#ifdef NO_PNG
|
||||||
|
(void)png1; (void)png2;
|
||||||
|
#else
|
||||||
FILE *fp1;
|
FILE *fp1;
|
||||||
FILE *fp2;
|
FILE *fp2;
|
||||||
png_structp png_ptr1, png_ptr2;
|
png_structp png_ptr1, png_ptr2;
|
||||||
|
Loading…
Reference in New Issue
Block a user