Avoid warnings.

committer: mfx <mfx> 1119613856 +0000
This commit is contained in:
Markus F.X.J. Oberhumer
2005-06-24 11:50:56 +00:00
parent 6b7c7f755c
commit 3e785008d3
2 changed files with 4 additions and 1 deletions
+2
View File
@@ -40,6 +40,8 @@ void File::chmod(const char *name, int mode)
#if defined(HAVE_CHMOD)
if (::chmod(name,mode) != 0)
throwIOException(name,errno);
#else
UNUSED(name); UNUSED(mode);
#endif
}