From 94261743cb1675a96eaae5ca5d3f69c4774bd059 Mon Sep 17 00:00:00 2001 From: Harry van Haaren Date: Sat, 6 May 2017 13:10:07 +0100 Subject: [PATCH] options: mute compile warning --- src/goptions.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/goptions.cxx b/src/goptions.cxx index f76c422..04698d7 100644 --- a/src/goptions.cxx +++ b/src/goptions.cxx @@ -81,7 +81,8 @@ static void updateLinkCB(Fl_Widget* w, void* data) str << l; - system( str.str().c_str() ); + int ret = system( str.str().c_str() ); + /* if it fails it fails.. */ } static void writeBindEnable(Fl_Widget* w, void* data)