From b833c6c8c5d2c3fb37f7b6da96c91356049f4d51 Mon Sep 17 00:00:00 2001 From: uz Date: Tue, 3 Apr 2012 12:54:17 +0000 Subject: [PATCH] Explicitly ignore the function result of CloseHandle(). git-svn-id: svn://svn.cc65.org/cc65/trunk@5636 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/common/filestat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/filestat.c b/src/common/filestat.c index 64d129a49..27a966fa1 100644 --- a/src/common/filestat.c +++ b/src/common/filestat.c @@ -119,7 +119,7 @@ int FileStat (const char* Path, struct stat* Buf) } else { Error = EACCES; } - CloseHandle (H); + (void) CloseHandle (H); } else { Error = EACCES; }