diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-12-21 19:59:03 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-12-21 19:59:03 +0000 |
commit | 9e39c590fc05d004ed2810bb78d3deee2429fedd (patch) | |
tree | b0710a0c085b963e37793b9f792af0bcf4ee2f90 /sys/dev/acpi/acpivar.h | |
parent | 56df9826d36908a3fffde27467e98f4833e0c60f (diff) |
even more knf love
Diffstat (limited to 'sys/dev/acpi/acpivar.h')
-rw-r--r-- | sys/dev/acpi/acpivar.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/acpi/acpivar.h b/sys/dev/acpi/acpivar.h index 9f06042cbe6..ee3c728f6ac 100644 --- a/sys/dev/acpi/acpivar.h +++ b/sys/dev/acpi/acpivar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: acpivar.h,v 1.31 2006/12/21 11:33:21 deraadt Exp $ */ +/* $OpenBSD: acpivar.h,v 1.32 2006/12/21 19:59:02 deraadt Exp $ */ /* * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> * @@ -24,8 +24,8 @@ /* #define ACPI_DEBUG */ #ifdef ACPI_DEBUG extern int acpi_debug; -#define dprintf(x...) do { if (acpi_debug) printf(x); } while(0) -#define dnprintf(n,x...) do { if (acpi_debug > (n)) printf(x); } while(0) +#define dprintf(x...) do { if (acpi_debug) printf(x); } while (0) +#define dnprintf(n,x...) do { if (acpi_debug > (n)) printf(x); } while (0) #else #define dprintf(x...) #define dnprintf(n,x...) |