summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkettenis <kettenis@openbsd.org>2020-06-25 09:03:01 +0000
committerkettenis <kettenis@openbsd.org>2020-06-25 09:03:01 +0000
commita56f162e78b214fdf02b0ddd73679c4fa13f1076 (patch)
treee979558ced4c812b2e159b85f86bc32c99f43d1c
parentSilently ignore -a or -b if the window index doesn't exist and create (diff)
downloadwireguard-openbsd-a56f162e78b214fdf02b0ddd73679c4fa13f1076.tar.xz
wireguard-openbsd-a56f162e78b214fdf02b0ddd73679c4fa13f1076.zip
Fix some small whitespace issues.
-rw-r--r--sys/arch/powerpc64/include/asm.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/powerpc64/include/asm.h b/sys/arch/powerpc64/include/asm.h
index 2ba4c66aa8e..6c1ac47199b 100644
--- a/sys/arch/powerpc64/include/asm.h
+++ b/sys/arch/powerpc64/include/asm.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: asm.h,v 1.2 2020/06/25 01:55:14 drahn Exp $ */
+/* $OpenBSD: asm.h,v 1.3 2020/06/25 09:03:01 kettenis Exp $ */
/*
* Copyright (c) 2020 Dale Rahn <drahn@openbsd.org>
@@ -22,9 +22,9 @@
#define _C_LABEL(x) x
#define _ASM_LABEL(x) x
-# define _TMP_LABEL(x) .L_ ## x
-# define _GEP_LABEL(x) .L_ ## x ## _gep0
-# define _LEP_LABEL(x) .L_ ## x ## _lep0
+#define _TMP_LABEL(x) .L_ ## x
+#define _GEP_LABEL(x) .L_ ## x ## _gep0
+#define _LEP_LABEL(x) .L_ ## x ## _lep0
#define _ENTRY(x) \
.text; .align 2; .globl x; .type x,@function; x: \