summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2004-01-22 20:39:06 +0000
committerderaadt <deraadt@openbsd.org>2004-01-22 20:39:06 +0000
commit54c78040abb3bcdb308d15e5fe07409104f411f6 (patch)
treefd739d2eeb4153ef527fce85790c8a7983075ddc
parentuse log_warnx and log_info. reclassify a few messages in the process and fix (diff)
downloadwireguard-openbsd-54c78040abb3bcdb308d15e5fe07409104f411f6.tar.xz
wireguard-openbsd-54c78040abb3bcdb308d15e5fe07409104f411f6.zip
use C comments, works better
-rw-r--r--sys/lib/libkern/arch/m88k/ffs.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/lib/libkern/arch/m88k/ffs.S b/sys/lib/libkern/arch/m88k/ffs.S
index fedb6481cb2..aca0ca50381 100644
--- a/sys/lib/libkern/arch/m88k/ffs.S
+++ b/sys/lib/libkern/arch/m88k/ffs.S
@@ -1,4 +1,4 @@
-/* $OpenBSD: ffs.S,v 1.1 2004/01/21 14:28:36 miod Exp $ */
+/* $OpenBSD: ffs.S,v 1.2 2004/01/22 20:39:06 deraadt Exp $ */
/*
* Written by Miodrag Vallat, 2004 - Public Domain
@@ -7,10 +7,10 @@
#include <machine/asm.h>
ENTRY(ffs)
- bcnd eq0, r2, 1f ! ff1(0) = 32, treat differently
+ bcnd eq0, r2, 1f /* ff1(0) = 32, treat differently */
ff1 r3, r2
jmp.n r1
- add r2, r3, 1 ! ff1 returns 0-31, need to increment
+ add r2, r3, 1 /* ff1 returns 0-31, need to increment */
1:
jmp.n r1
or r2, r0, r0