changeset 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 8be8607301c8
children 13d046d301f7
files win/dw.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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;
 }