diff options
author | 2016-01-02 15:05:21 +0000 | |
---|---|---|
committer | 2016-01-02 15:05:21 +0000 | |
commit | 003408b48b1e1ff121a2eed64afcda26c66b6376 (patch) | |
tree | c9b29cec3a8ad6a232928ea7b16e1669b167c450 | |
parent | garbage collect unsused variable (diff) | |
download | wireguard-openbsd-003408b48b1e1ff121a2eed64afcda26c66b6376.tar.xz wireguard-openbsd-003408b48b1e1ff121a2eed64afcda26c66b6376.zip |
fix typo in comment, found by Michal Mazurek, thanks
-rw-r--r-- | usr.sbin/vmd/vmd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/vmd/vmd.h b/usr.sbin/vmd/vmd.h index 3e865d44cbc..0df024978ba 100644 --- a/usr.sbin/vmd/vmd.h +++ b/usr.sbin/vmd/vmd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmd.h,v 1.16 2015/12/11 10:16:53 reyk Exp $ */ +/* $OpenBSD: vmd.h,v 1.17 2016/01/02 15:05:21 benno Exp $ */ /* * Copyright (c) 2015 Mike Larkin <mlarkin@openbsd.org> @@ -43,7 +43,7 @@ #define dprintf(x...) do { log_debug(x); } while(0) #else #define dprintf(x...) -#endif /* VMM_DEBUG */ +#endif /* VMD_DEBUG */ enum imsg_type { IMSG_VMDOP_START_VM_REQUEST = IMSG_PROC_MAX, |