diff options
author | 2003-02-28 16:32:09 +0000 | |
---|---|---|
committer | 2003-02-28 16:32:09 +0000 | |
commit | 323378de74014c1e5ee9d877f391518b110a64ea (patch) | |
tree | ca1d7f0affa83b4c2f38ab04a6e19c4f192eecde | |
parent | take too. patch ahs to screw up once in a while (diff) | |
download | wireguard-openbsd-323378de74014c1e5ee9d877f391518b110a64ea.tar.xz wireguard-openbsd-323378de74014c1e5ee9d877f391518b110a64ea.zip |
Fix double Debug() usage, for instance, Debug(DPARS|DEXT...)
Make sence if debugging.
millert@ ok
-rw-r--r-- | usr.sbin/cron/macros.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/cron/macros.h b/usr.sbin/cron/macros.h index 959a6d3cffc..39b1c8cf055 100644 --- a/usr.sbin/cron/macros.h +++ b/usr.sbin/cron/macros.h @@ -1,4 +1,4 @@ -/* $OpenBSD: macros.h,v 1.4 2003/02/20 20:38:08 millert Exp $ */ +/* $OpenBSD: macros.h,v 1.5 2003/02/28 16:32:09 mpech Exp $ */ /* * Copyright (c) 1997,2000 by Internet Software Consortium, Inc. @@ -80,7 +80,7 @@ #if DEBUGGING # define Debug(mask, message) \ - if ( (DebugFlags & (mask) ) == (mask) ) \ + if (DebugFlags & (mask)) \ printf message; #else /* !DEBUGGING */ # define Debug(mask, message) \ |