diff options
author | teor <teor2345@gmail.com> | 2015-04-15 19:42:41 +1000 |
---|---|---|
committer | teor <teor2345@gmail.com> | 2015-04-15 19:42:41 +1000 |
commit | af2b6bdaba85d617f9eb93c67457f8b89b088b2d (patch) | |
tree | ffb1662b55e8e0fdb255e257b8026ca404928ead /src/test/test-memwipe.c | |
parent | e891deb02120c3756ccfb87171e36d271c3d7077 (diff) | |
download | tor-af2b6bdaba85d617f9eb93c67457f8b89b088b2d.tar.gz tor-af2b6bdaba85d617f9eb93c67457f8b89b088b2d.zip |
Fix spaces in crypto.h and test-memwipe.c
Diffstat (limited to 'src/test/test-memwipe.c')
-rw-r--r-- | src/test/test-memwipe.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/test/test-memwipe.c b/src/test/test-memwipe.c index a721a8e728..815475a55e 100644 --- a/src/test/test-memwipe.c +++ b/src/test/test-memwipe.c @@ -148,8 +148,11 @@ check_heap_buffer(void) static struct testcase { const char *name; - unsigned (*fill_fn)(void); - unsigned (*check_fn)(void); + /* this spacing satisfies make check-spaces */ + unsigned + (*fill_fn)(void); + unsigned + (*check_fn)(void); } testcases[] = { { "nil", fill_a_buffer_nothing, check_a_buffer }, { "nil-heap", fill_heap_buffer_nothing, check_heap_buffer }, |