# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1316056814 0 # Node ID 03b6d9fdfac0511fccbc522c7544080f5c2a057a # Parent e6a2f57c0842a55f82ac0288fccf609841efda8c Fixed a typo on Unix... timeout not time. diff -r e6a2f57c0842 -r 03b6d9fdfac0 gtk/dw.c --- a/gtk/dw.c Thu Sep 15 03:13:50 2011 +0000 +++ b/gtk/dw.c Thu Sep 15 03:20:14 2011 +0000 @@ -8608,7 +8608,7 @@ return DW_ERROR_GENERAL; pthread_mutex_lock (&(eve->mutex)); - if(time != -1) + if(timeout != -1) { struct timeval now; struct timespec timeo; diff -r e6a2f57c0842 -r 03b6d9fdfac0 gtk3/dw.c --- a/gtk3/dw.c Thu Sep 15 03:13:50 2011 +0000 +++ b/gtk3/dw.c Thu Sep 15 03:20:14 2011 +0000 @@ -7486,7 +7486,7 @@ return DW_ERROR_GENERAL; pthread_mutex_lock (&(eve->mutex)); - if(time != -1) + if(timeout != -1) { struct timeval now; struct timespec timeo;