]> granicus.if.org Git - graphviz/commitdiff
squash -Wunused-parameter warnings in dummy bindings init
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 11 Jul 2021 02:03:13 +0000 (19:03 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 17 Jul 2021 18:36:52 +0000 (11:36 -0700)
tclpkg/gv/gv_dummy_init.c

index d213ab86d5c6ec3997f40b3b16ae3962deaf3f60..451eac6bb969e83def280f95488a136313f375bf 100644 (file)
@@ -1,5 +1,5 @@
 #include <gvc/gvc.h>
 
-void gv_string_writer_init (GVC_t *gvc) {}
-void gv_channel_writer_init (GVC_t *gvc) {}
-void gv_writer_reset (GVC_t *gvc) {}
+void gv_string_writer_init (GVC_t *gvc) { (void)gvc; }
+void gv_channel_writer_init (GVC_t *gvc) { (void)gvc; }
+void gv_writer_reset (GVC_t *gvc) { (void)gvc; }