From b2d089e7f6a466da7b14ba73aee3233394d33043 Mon Sep 17 00:00:00 2001 From: Pedro Gonnet <gonnet@google.com> Date: Sun, 18 Dec 2016 22:55:39 +0100 Subject: [PATCH] clean up a few things. --- tests/testDump.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/testDump.c b/tests/testDump.c index b290190bfb..5f46d30a4e 100644 --- a/tests/testDump.c +++ b/tests/testDump.c @@ -31,10 +31,10 @@ #include <unistd.h> /* This object's header. */ -#include "dump.h" +#include "../src/dump.h" /* Local headers. */ -#include "threadpool.h" +#include "../src/threadpool.h" void dump_mapper(void *map_data, int num_elements, void *extra_data) { struct dump *d = (struct dump *)extra_data; @@ -78,4 +78,7 @@ int main(int argc, char *argv[]) { /* Finalize the dump. */ dump_close(&d); + + /* Return a happy number. */ + return 0; } -- GitLab