diff options
author | 2007-10-29 23:49:41 +0000 | |
---|---|---|
committer | 2007-10-29 23:49:41 +0000 | |
commit | 13539738a24e6fdf76c6dd012259794c1845fe84 (patch) | |
tree | e0e23069a481e40c560e66a9c5eff96b0a09040c | |
parent | run depend so that SFILES depend on assym.h, which allows them to build (diff) | |
download | wireguard-openbsd-13539738a24e6fdf76c6dd012259794c1845fe84.tar.xz wireguard-openbsd-13539738a24e6fdf76c6dd012259794c1845fe84.zip |
remove extra backslash at the end of RB_PROTOTYPE, report from
Jan.Pechanec AT Sun.COM; ok deraadt@
-rw-r--r-- | sys/sys/tree.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/tree.h b/sys/sys/tree.h index 3f3236d7e10..e2bac15bf7a 100644 --- a/sys/sys/tree.h +++ b/sys/sys/tree.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tree.h,v 1.9 2004/11/24 18:10:42 tdeval Exp $ */ +/* $OpenBSD: tree.h,v 1.10 2007/10/29 23:49:41 djm Exp $ */ /* * Copyright 2002 Niels Provos <provos@citi.umich.edu> * All rights reserved. @@ -380,8 +380,8 @@ struct type *name##_RB_REMOVE(struct name *, struct type *); \ struct type *name##_RB_INSERT(struct name *, struct type *); \ struct type *name##_RB_FIND(struct name *, struct type *); \ struct type *name##_RB_NEXT(struct type *); \ -struct type *name##_RB_MINMAX(struct name *, int); \ - \ +struct type *name##_RB_MINMAX(struct name *, int); + /* Main rb operation. * Moves node close to the key of elm to top |