diff options
author | 2016-11-10 13:19:49 +0000 | |
---|---|---|
committer | 2016-11-10 13:19:49 +0000 | |
commit | a0ca7f2cb3d2a547d49f4771f9e6c10410cd4848 (patch) | |
tree | dc4d5a98c734ddd503b20ad47460d58b4632ff43 | |
parent | Copyright and license (diff) | |
download | wireguard-openbsd-a0ca7f2cb3d2a547d49f4771f9e6c10410cd4848.tar.xz wireguard-openbsd-a0ca7f2cb3d2a547d49f4771f9e6c10410cd4848.zip |
Typo in the guard
-rw-r--r-- | sys/sys/ctf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/ctf.h b/sys/sys/ctf.h index 71329e9c2bd..069bd25a70e 100644 --- a/sys/sys/ctf.h +++ b/sys/sys/ctf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ctf.h,v 1.2 2016/10/02 08:08:11 jasper Exp $ */ +/* $OpenBSD: ctf.h,v 1.3 2016/11/10 13:19:49 mpi Exp $ */ /* * Copyright (c) 2016 Martin Pieuchot <mpi@openbsd.org> @@ -17,7 +17,7 @@ */ #ifndef _SYS_CTF_H_ -#define _SYS_CTF_H +#define _SYS_CTF_H_ /* * CTF ``Compact ANSI-C Type Format'' ABI header file. @@ -180,4 +180,4 @@ struct ctf_enum { #define CTF_LMEM_OFFSET(m) \ (((uint64_t)(m)->ctlm_offsethi) << 32 | (m)->ctlm_offsetlo) -#endif /* _SYS_CTF_H */ +#endif /* _SYS_CTF_H_ */ |