diff options
-rw-r--r-- | rsc/source/rsc/rsc.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rsc/source/rsc/rsc.cxx b/rsc/source/rsc/rsc.cxx index e5a7228fa335..5c37481d706a 100644 --- a/rsc/source/rsc/rsc.cxx +++ b/rsc/source/rsc/rsc.cxx @@ -710,7 +710,7 @@ ERRTYPE RscCompiler::Link() else { #ifdef UNX - chmod( it->aOutputRc.getStr(), S_IRWXU | S_IRWXG | S_IROTH ); + (void)chmod( it->aOutputRc.getStr(), S_IRWXU | S_IRWXG | S_IROTH ); #endif } @@ -726,7 +726,7 @@ ERRTYPE RscCompiler::Link() else { #ifdef UNX - chmod( aSysList.getStr(), S_IRWXU | S_IRWXG | S_IROTH ); + (void)chmod( aSysList.getStr(), S_IRWXU | S_IRWXG | S_IROTH ); #endif } } |