diff options
author | 2020-06-25 09:03:01 +0000 | |
---|---|---|
committer | 2020-06-25 09:03:01 +0000 | |
commit | a56f162e78b214fdf02b0ddd73679c4fa13f1076 (patch) | |
tree | e979558ced4c812b2e159b85f86bc32c99f43d1c | |
parent | Silently ignore -a or -b if the window index doesn't exist and create (diff) | |
download | wireguard-openbsd-a56f162e78b214fdf02b0ddd73679c4fa13f1076.tar.xz wireguard-openbsd-a56f162e78b214fdf02b0ddd73679c4fa13f1076.zip |
Fix some small whitespace issues.
-rw-r--r-- | sys/arch/powerpc64/include/asm.h | 8 |
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: \ |