diff options
-rw-r--r-- | sys/net/if_atmsubr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/net/if_atmsubr.c b/sys/net/if_atmsubr.c index 148c2ec..53dc570 100644 --- a/sys/net/if_atmsubr.c +++ b/sys/net/if_atmsubr.c @@ -77,7 +77,7 @@ SYSCTL_NODE(_hw, OID_AUTO, atm, CTLFLAG_RW, 0, "ATM hardware"); #define ETHERTYPE_IPV6 0x86dd #endif -#define senderr(e) { error = (e); goto bad;} +#define senderr(e) do { error = (e); goto bad;} while (0) /* * atm_output: ATM output routine |