summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1992-04-14 22:37:04 +0000
committerRoland McGrath <roland@redhat.com>1992-04-14 22:37:04 +0000
commitc5f7787f376a2d0e3004c68483349c7170232618 (patch)
tree093f9261b6c724189f5c41251b41cf513db05965
parent7c92d87313a8a95fdbdb81612445238fc374b0b1 (diff)
downloadgunmake-c5f7787f376a2d0e3004c68483349c7170232618.tar.gz
Formerly make.h.~42~
-rw-r--r--make.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/make.h b/make.h
index 37c64c2..5c91663 100644
--- a/make.h
+++ b/make.h
@@ -269,6 +269,6 @@ extern char *program;
extern unsigned int makelevel;
-#define DEBUGPR(msg) \
- if (debug_flag) { print_spaces (depth); printf (msg, file->name); \
- fflush (stdout); } else
+#define DEBUGPR(msg) \
+ do if (debug_flag) { print_spaces (depth); printf (msg, file->name); \
+ fflush (stdout); } while (0)