1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-03 06:29:36 +00:00

Explicitly ignore the function result of CloseHandle().

git-svn-id: svn://svn.cc65.org/cc65/trunk@5636 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2012-04-03 12:54:17 +00:00
parent dd6475ac3d
commit b833c6c8c5

View File

@ -119,7 +119,7 @@ int FileStat (const char* Path, struct stat* Buf)
} else {
Error = EACCES;
}
CloseHandle (H);
(void) CloseHandle (H);
} else {
Error = EACCES;
}