summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordlg <dlg@openbsd.org>2016-09-16 01:05:34 +0000
committerdlg <dlg@openbsd.org>2016-09-16 01:05:34 +0000
commita3c22bba9d15b7fcce480ba9f192739b42be4961 (patch)
treefa979cd9fabe82297b8be79280e37b24b5cc1c5d
parentfix for newer modp DH groups (diffie-hellman-group14-sha256 etc) (diff)
downloadwireguard-openbsd-a3c22bba9d15b7fcce480ba9f192739b42be4961.tar.xz
wireguard-openbsd-a3c22bba9d15b7fcce480ba9f192739b42be4961.zip
remove a trailing \
i mustnt have cleaned this up properly when i copied the tree.h code from Ilya Kaliman
-rw-r--r--sys/kern/subr_tree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_tree.c b/sys/kern/subr_tree.c
index 89d82588e77..4e2c32c744b 100644
--- a/sys/kern/subr_tree.c
+++ b/sys/kern/subr_tree.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: subr_tree.c,v 1.4 2016/09/15 06:07:22 dlg Exp $ */
+/* $OpenBSD: subr_tree.c,v 1.5 2016/09/16 01:05:34 dlg Exp $ */
/*
* Copyright 2002 Niels Provos <provos@citi.umich.edu>
@@ -460,7 +460,7 @@ _rb_find(const struct rb_type *t, struct rb_tree *rbt, const void *key)
return (NULL);
}
-/* Finds the first node greater than or equal to the search key */ \
+/* Finds the first node greater than or equal to the search key */
void *
_rb_nfind(const struct rb_type *t, struct rb_tree *rbt, const void *key)
{