diff win/dw.c @ 1170:4b94c9f5ddeb

Missing return on Windows... surprised this compiled.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Sat, 17 Sep 2011 09:20:31 +0000
parents 924c8087a755
children 76262040ed5f
line wrap: on
line diff
--- 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;
 }