aboutsummaryrefslogtreecommitdiff
path: root/jim-eventloop.c
diff options
context:
space:
mode:
Diffstat (limited to 'jim-eventloop.c')
-rw-r--r--jim-eventloop.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/jim-eventloop.c b/jim-eventloop.c
index eedaa46..d3c5ce0 100644
--- a/jim-eventloop.c
+++ b/jim-eventloop.c
@@ -597,7 +597,6 @@ static int JimELUpdateCommand(Jim_Interp *interp, int argc, Jim_Obj *const *argv
enum { UPDATE_IDLE, UPDATE_NONE };
int option = UPDATE_NONE;
int flags = JIM_TIME_EVENTS;
- int rc;
if (argc == 1) {
flags = JIM_ALL_EVENTS;
@@ -609,7 +608,7 @@ static int JimELUpdateCommand(Jim_Interp *interp, int argc, Jim_Obj *const *argv
eventLoop->suppress_bgerror = 0;
- while ((rc = Jim_ProcessEvents(interp, flags | JIM_DONT_WAIT)) > 0) {
+ while (Jim_ProcessEvents(interp, flags | JIM_DONT_WAIT) > 0) {
}
return JIM_OK;