diff options
author | 1999-09-22 09:33:33 +0000 | |
---|---|---|
committer | 1999-09-22 09:33:33 +0000 | |
commit | 5121b409f460b55c96a57aeb7fe6c5132a2053db (patch) | |
tree | 0b77d7da47d69cd8ccb4a3e3701c9f37af1eeec9 | |
parent | routing interface sends aligned to long word boundaries; itojun (diff) | |
download | wireguard-openbsd-5121b409f460b55c96a57aeb7fe6c5132a2053db.tar.xz wireguard-openbsd-5121b409f460b55c96a57aeb7fe6c5132a2053db.zip |
Don't worry, be a happy gcc
-rw-r--r-- | sys/arch/mvme68k/include/param.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme68k/include/param.h b/sys/arch/mvme68k/include/param.h index abc3e5e126c..494545d57aa 100644 --- a/sys/arch/mvme68k/include/param.h +++ b/sys/arch/mvme68k/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.5 1997/03/31 00:24:04 downsj Exp $ */ +/* $OpenBSD: param.h,v 1.6 1999/09/22 09:33:33 espie Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -151,7 +151,7 @@ register int _spl_r; \ \ __asm __volatile ("clrl %0; movew sr,%0; movew %1,sr" : \ - "&=d" (_spl_r) : "di" (s)); \ + "=&d" (_spl_r) : "di" (s)); \ _spl_r; \ }) |