about summary refs log tree commit diff
path: root/converter/other/fiasco
diff options
context:
space:
mode:
Diffstat (limited to 'converter/other/fiasco')
-rw-r--r--converter/other/fiasco/lib/error.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/converter/other/fiasco/lib/error.c b/converter/other/fiasco/lib/error.c
index aeb6eaf9..08291ce0 100644
--- a/converter/other/fiasco/lib/error.c
+++ b/converter/other/fiasco/lib/error.c
@@ -84,10 +84,10 @@ set_error(const char *format, ...) {
             char * const vstring = va_arg (args, char *);
             len += strlen(vstring);
         } else if (*str == 'd') {
-            va_arg (args, int);
+            (void)va_arg(args, int);
             len += 10;
         } else if (*str == 'c') {
-            va_arg (args, int);
+            (void)va_arg(args, int);
             len += 1;
         } else
             return;
@@ -129,10 +129,10 @@ error(const char *format, ...) {
             char * const vstring = va_arg (args, char *);
             len += strlen(vstring);
         } else if (*str == 'd') {
-            va_arg (args, int);
+            (void)va_arg(args, int);
             len += 10;
         } else if (*str == 'c') {
-            va_arg (args, int);
+            (void)va_arg(args, int);
             len += 1;
         } else {
 #if HAVE_SETJMP_H