Cleanup: printf warning

This commit is contained in:
Campbell Barton 2020-04-30 17:22:34 +10:00
parent e1d4c3bc36
commit 52186a39af
1 changed files with 1 additions and 1 deletions

View File

@ -2456,7 +2456,7 @@ GHOST_TSuccess GHOST_SystemX11::showMessageBox(const char *title,
string cmd = "xdg-open \"" + string(link) + "\"";
if (system(cmd.c_str()) != 0) {
GHOST_PRINTF("GHOST_SystemX11::showMessageBox: Unable to run system command [%s]",
cmd);
cmd.c_str());
}
}
break;