this simple patch removes a build warning in io\io_win32.c:
io\io_win32.c(272) : warning C4550: expression evaluates to a function
which is missing an argument list
with patch applied, all expected tests pass.
~jerry
Index: io/io_win32.c
===================================================================
--- io/io_win32.c (revision 8062)
+++ io/io_win32.c (working copy)
@@ -269,7 +269,6 @@
INTVAL mode;
mode = 0;
- UNUSED(fdopen);
UNUSED(layer);
if (PIO_win32_isatty(fd))
The patch is applied.
This warning surfaces only because I had inadvertedly enabled
PARROT_NET_DEVEL in io/io_private.h in SVN revision 7974. Luckily no
major harm seemed to have done by that.
The good thing is that the tiny webserver
'./parrot exambles/io/httpd.imc' should work now out of the box. Thanks
to Robert Spiers with a neat Parrot as favicon.
CU, Bernhard
CU, Bernhard