From 3f1bad205051b11368191a4c085c76782c4ab4b4 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Fri, 27 Jan 2012 22:04:46 +0100 Subject: [PATCH] test: add missing return statement in fs_stat_root --- test/test-fs.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test-fs.c b/test/test-fs.c index 0fd1a134..1601ac44 100644 --- a/test/test-fs.c +++ b/test/test-fs.c @@ -1298,6 +1298,8 @@ TEST_IMPL(fs_stat_root) { r = uv_fs_stat(loop, &stat_req, "\\\\?\\C:\\", NULL); ASSERT(r == 0); + + return 0; } #endif