diff options
author | 2006-05-14 08:37:39 +0000 | |
---|---|---|
committer | 2006-05-14 08:37:39 +0000 | |
commit | f77208fd29a296da7fc61ba3bbdbee1b1909f698 (patch) | |
tree | 01d2ad40849bc57556d83f179435c59401cbf984 /sys | |
parent | enable twe on amd64, tested with a 7006-2 (diff) | |
download | wireguard-openbsd-f77208fd29a296da7fc61ba3bbdbee1b1909f698.tar.xz wireguard-openbsd-f77208fd29a296da7fc61ba3bbdbee1b1909f698.zip |
Missing semicolon, found by deraadt
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/m88k/m88k/eh_common.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/m88k/m88k/eh_common.S b/sys/arch/m88k/m88k/eh_common.S index 40ce6186158..64660c92e1e 100644 --- a/sys/arch/m88k/m88k/eh_common.S +++ b/sys/arch/m88k/m88k/eh_common.S @@ -1,4 +1,4 @@ -/* $OpenBSD: eh_common.S,v 1.18 2006/05/08 14:34:01 miod Exp $ */ +/* $OpenBSD: eh_common.S,v 1.19 2006/05/14 08:37:39 miod Exp $ */ /* * Mach Operating System * Copyright (c) 1993-1991 Carnegie Mellon University @@ -327,7 +327,7 @@ ld r1 , r31, GENREG_OFF(1) ; \ ld r2 , r31, GENREG_OFF(2) ; \ ld r3 , r31, GENREG_OFF(3) ; \ - ld r31, r31, GENREG_OFF(31) + ld r31, r31, GENREG_OFF(31) ; #endif /* |