Fix useless warning.

Stopped build with -Werror.
master
Cyp 2011-09-12 09:07:25 +02:00
parent 1c8d7e4e04
commit 99ca8043a5
1 changed files with 2 additions and 1 deletions

View File

@ -129,7 +129,8 @@ static void runHyperlink(void)
system("open http://wz2100.net");
#else
// for linux
system("xdg-open http://wz2100.net &");
int stupidWarning = system("xdg-open http://wz2100.net &");
(void)stupidWarning; // Why is system() a warn_unused_result function..?
#endif
}