diff options
author | 2016-09-16 01:05:34 +0000 | |
---|---|---|
committer | 2016-09-16 01:05:34 +0000 | |
commit | a3c22bba9d15b7fcce480ba9f192739b42be4961 (patch) | |
tree | fa979cd9fabe82297b8be79280e37b24b5cc1c5d | |
parent | fix for newer modp DH groups (diffie-hellman-group14-sha256 etc) (diff) | |
download | wireguard-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.c | 4 |
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) { |