aboutsummaryrefslogtreecommitdiffstats
path: root/pngerror.c
diff options
context:
space:
mode:
authorcarvsdriver <carvsdriver@gmail.com>2013-06-27 13:11:21 -0400
committerMike Grissom <mikeyman77@gmail.com>2013-07-13 10:34:41 -0700
commit1c1a497260ca86a5907469e7218e0faef22f3873 (patch)
tree1559e4dfac812a038e8d050d447d42d8a783b4bf /pngerror.c
parent41e4a032ef9f599ea597dcdff1797f0ea49bdd97 (diff)
downloadexternal_libpng-1c1a497260ca86a5907469e7218e0faef22f3873.zip
external_libpng-1c1a497260ca86a5907469e7218e0faef22f3873.tar.gz
external_libpng-1c1a497260ca86a5907469e7218e0faef22f3873.tar.bz2
external: libpng: fix numerous compiler warnings
Clean up the code for unused variables to handle them a bit more elegantly. Change-Id: I8b01c27673128719dad74276599d5a286c4dd412
Diffstat (limited to 'pngerror.c')
-rw-r--r--pngerror.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pngerror.c b/pngerror.c
index 025d52e..5b43790 100644
--- a/pngerror.c
+++ b/pngerror.c
@@ -348,7 +348,7 @@ png_default_warning(png_structp png_ptr, png_const_charp warning_message)
#else
warning_message = warning_message; /* Make compiler happy */
#endif
- png_ptr = png_ptr; /* Make compiler happy */
+ UNUSED(png_ptr); /* Make compiler happy */
}
#endif /* PNG_WARNINGS_SUPPORTED */