mu-utils: avoid compiler warning

This commit is contained in:
Dirk-Jan C. Binnema 2022-04-18 22:03:09 +03:00
parent 7091ae339f
commit 15decf6327
1 changed files with 1 additions and 1 deletions

View File

@ -618,7 +618,7 @@ Mu::TempDir::~TempDir()
/* ugly */
const auto cmd{format("/bin/rm -rf '%s'", path_.c_str())};
::system(cmd.c_str());
(void)::system(cmd.c_str());
g_debug("removed '%s'", path_.c_str());
}