diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2006-12-31 16:27:56 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2006-12-31 16:27:56 +0000 |
commit | 2d7fdc7a294a7a4b0a4f41fab938915d9fd0aa76 (patch) | |
tree | 84696b128fcf2349f0fb1b9381579ecd678167ef /sys | |
parent | b20731039ab241013d22f1a46327d568fd3da8b1 (diff) |
Use #ifdef MALO_DEBUG else a simple #define MALO_DEBUG will not work.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/ic/malo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/malo.c b/sys/dev/ic/malo.c index 0cda803b86b..ff6d3b01eba 100644 --- a/sys/dev/ic/malo.c +++ b/sys/dev/ic/malo.c @@ -1,4 +1,4 @@ -/* $OpenBSD: malo.c,v 1.55 2006/12/30 23:31:26 claudio Exp $ */ +/* $OpenBSD: malo.c,v 1.56 2006/12/31 16:27:55 claudio Exp $ */ /* * Copyright (c) 2006 Claudio Jeker <claudio@openbsd.org> @@ -330,7 +330,7 @@ malo_intr(void *arg) malo_cmd_string(hdr->cmd), malo_cmd_string_result(hdr->result)); } -#if MALO_DEBUG +#ifdef MALO_DEBUG printf("%s: cmd answer for %s=%s\n", sc->sc_dev.dv_xname, malo_cmd_string(hdr->cmd), |