diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-05-25 03:07:50 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-05-25 03:07:50 +0000 |
commit | 42aa466dab76ad7142a5d979a9b5f39a8a8f4ad5 (patch) | |
tree | cc15acd90114c804656da4fa6038c8fce758bd1a /sys | |
parent | caa64c20861692971e10237bd81eb7f534beb782 (diff) |
a dreaded whitespace; Kyle Milz
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/tree.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/tree.h b/sys/sys/tree.h index 80d0f538134..e6502b1e744 100644 --- a/sys/sys/tree.h +++ b/sys/sys/tree.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tree.h,v 1.13 2011/07/09 00:19:45 pirofti Exp $ */ +/* $OpenBSD: tree.h,v 1.14 2015/05/25 03:07:49 deraadt Exp $ */ /* * Copyright 2002 Niels Provos <provos@citi.umich.edu> * All rights reserved. @@ -83,7 +83,7 @@ struct { \ SPLAY_RIGHT(tmp, field) = (head)->sph_root; \ (head)->sph_root = tmp; \ } while (0) - + #define SPLAY_ROTATE_LEFT(head, tmp, field) do { \ SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(tmp, field); \ SPLAY_LEFT(tmp, field) = (head)->sph_root; \ |