# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1316251231 0 # Node ID 4b94c9f5ddeb39364fed1d42c6f87b2f44e02c0c # Parent 8be8607301c8899b9b8c97f1ffae94730f82a821 Missing return on Windows... surprised this compiled. diff -r 8be8607301c8 -r 4b94c9f5ddeb win/dw.c --- a/win/dw.c Fri Sep 16 22:42:35 2011 +0000 +++ b/win/dw.c Sat Sep 17 09:20:31 2011 +0000 @@ -9343,7 +9343,7 @@ int API dw_named_event_post(HEV eve) { if(SetEvent(eve)) - DW_ERROR_NONE; + return DW_ERROR_NONE; return DW_ERROR_GENERAL; }