]> git.pond.sub.org Git - empserver/blobdiff - src/lib/common/pathfind.c
common/pathfind: A more portable DPRINTF()
[empserver] / src / lib / common / pathfind.c
index 0db83e086ab8cb5a439facd6115961d737264ebe..4d768fb1003f015f28fb542ce1f8c230f96214d4 100644 (file)
@@ -27,7 +27,7 @@
  *  pathfind.c: Find cheapest paths
  *
  *  Known contributors to this file:
- *     Markus Armbruster, 2014
+ *     Markus Armbruster, 2014-2020
  */
 
 #include <config.h>
@@ -42,9 +42,9 @@
 #include "sect.h"
 
 #ifdef PATH_FIND_DEBUG
-#define DPRINTF(fmt, ...) ((void)printf(fmt , ## __VA_ARGS__))
+#define DPRINTF(...) ((void)printf(## __VA_ARGS__))
 #else
-#define DPRINTF(fmt, ...) ((void)0)
+#define DPRINTF(...) ((void)0)
 #endif
 
 static char *bufrotate(char *buf, size_t bufsz, size_t i);