From 5191ab5e938bced0f253a0cd64d135a8b27006b2 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Sun, 20 May 2018 15:14:35 -0700 Subject: [PATCH] test: fs_fchmod_archive_readonly must return a value PR-URL: https://github.com/libuv/libuv/pull/1843 Reviewed-By: Anna Henningsen Reviewed-By: Bartosz Sosnowski Reviewed-By: Gireesh Punathil --- test/test-fs.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test-fs.c b/test/test-fs.c index e99b3e53..dfe757b4 100644 --- a/test/test-fs.c +++ b/test/test-fs.c @@ -3361,5 +3361,7 @@ TEST_IMPL(fs_fchmod_archive_readolny) { /* Restore Archive flag for rest of the tests */ r = SetFileAttributes("test_file", FILE_ATTRIBUTE_ARCHIVE); ASSERT(r != 0); + + return 0; } #endif