diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-04-07 19:57:40 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-04-07 19:57:40 +0000 |
commit | 3d60cd1d61f0d5c6a32d681ff49dad370272f4f6 (patch) | |
tree | a1c90d2ade50495eff62801d1c439dfd3cdb2876 /src/or/tree.h | |
parent | 75c19716a80a96a7550dd723aca73c245987b87f (diff) | |
download | tor-3d60cd1d61f0d5c6a32d681ff49dad370272f4f6.tar.gz tor-3d60cd1d61f0d5c6a32d681ff49dad370272f4f6.zip |
Delete trailing whitespace and expand tabs; remove unused aes decrypt code
svn:r1522
Diffstat (limited to 'src/or/tree.h')
-rw-r--r-- | src/or/tree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/tree.h b/src/or/tree.h index 927ca04cd7..7b4f6a0eea 100644 --- a/src/or/tree.h +++ b/src/or/tree.h @@ -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; \ |