Make DPRINTF() depend on DEBUG and add the missing ;
authorclaudio <claudio@openbsd.org>
Wed, 21 Feb 2024 13:21:56 +0000 (13:21 +0000)
committerclaudio <claudio@openbsd.org>
Wed, 21 Feb 2024 13:21:56 +0000 (13:21 +0000)
OK mpi@

usr.bin/ctfconv/parse.c

index 108608f..d66db52 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: parse.c,v 1.17 2024/02/21 13:20:38 claudio Exp $ */
+/*     $OpenBSD: parse.c,v 1.18 2024/02/21 13:21:56 claudio Exp $ */
 
 /*
  * Copyright (c) 2016-2017 Martin Pieuchot
@@ -50,7 +50,11 @@ struct pool it_pool, im_pool, ir_pool;
 #define nitems(_a)     (sizeof((_a)) / sizeof((_a)[0]))
 #endif
 
-#define DPRINTF(x...)  do { /*printf(x)*/ } while (0)
+#ifdef DEBUG
+#define DPRINTF(x...)  do { printf(x); } while (0)
+#else
+#define DPRINTF(x...)  do { ; } while (0)
+#endif
 
 #define VOID_OFFSET    1       /* Fake offset for generating "void" type. */