diff options
author | Roland McGrath <roland@redhat.com> | 1992-04-14 22:37:04 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1992-04-14 22:37:04 +0000 |
commit | c5f7787f376a2d0e3004c68483349c7170232618 (patch) | |
tree | 093f9261b6c724189f5c41251b41cf513db05965 | |
parent | 7c92d87313a8a95fdbdb81612445238fc374b0b1 (diff) | |
download | gunmake-c5f7787f376a2d0e3004c68483349c7170232618.tar.gz |
Formerly make.h.~42~
-rw-r--r-- | make.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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) |