Index: io/io_win32.c
===================================================================
RCS file: /cvs/public/parrot/io/io_win32.c,v
retrieving revision 1.30
diff -u -r1.30 io_win32.c
--- io/io_win32.c	5 Sep 2003 12:31:43 -0000	1.30
+++ io/io_win32.c	6 Sep 2003 01:33:25 -0000
@@ -207,7 +207,7 @@
 }
 
 
-static void
+static INTVAL
 PIO_win32_flush(theINTERP, ParrotIOLayer *layer, ParrotIO *io)
 {
     /*
@@ -219,7 +219,7 @@
      * Windows 9x: The function does nothing if hFile is a handle to console output. That is because console output is not buffered.
      * The function returns TRUE, but it does nothing.
      */
-    FlushFileBuffers(io->fd);
+    return FlushFileBuffers(io->fd);
 }
 
 
