commit: 7df49fa961c661f9bd15f308aab6ca0d2c6fa13f
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 5 12:15:36 2018 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Thu Apr 5 12:15:36 2018 +0000
URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=7df49fa9
tests/copy_file/test.c: fix compilation warning
tests/copy_file/test.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/tests/copy_file/test.c b/tests/copy_file/test.c
index deff965..72b1c77 100644
--- a/tests/copy_file/test.c
+++ b/tests/copy_file/test.c
@@ -1,5 +1,5 @@
/*
- * Copyright 2005-2016 Gentoo Foundation
+ * Copyright 2005-2018 Gentoo Foundation
* Distributed under the terms of the GNU General Public License v2
*/
@@ -61,4 +61,6 @@ int main(int argc, char *argv[])
assert(buf != NULL);
memset(buf, 0xaf, len);
testone(buf, len);
+
+ return 0;
}