summaryrefslogtreecommitdiff
path: root/tests/gdtest
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2013-05-07 14:51:27 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2013-05-07 14:51:27 +0900
commitb9ff2c3661a07c45916c0222b30b00b079f0a92e (patch)
tree8a68102f389a67f2883617821479503ad18db256 /tests/gdtest
parent29a6d2ae04cd998b45cc2e96aa55037744506566 (diff)
downloadlibgd-b9ff2c3661a07c45916c0222b30b00b079f0a92e.tar.gz
silence -Wunused-variable
Diffstat (limited to 'tests/gdtest')
-rw-r--r--tests/gdtest/gdtest.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/gdtest/gdtest.c b/tests/gdtest/gdtest.c
index 35f96fc..1e69627 100644
--- a/tests/gdtest/gdtest.c
+++ b/tests/gdtest/gdtest.c
@@ -11,7 +11,9 @@
void gdSilence(int priority, const char *format, va_list args)
{
- return;
+ (void)priority;
+ (void)format;
+ (void)args;
}
gdImagePtr gdTestImageFromPng(const char *filename)