ws2_32: Add default case for family in debugstr_wsaioctl.

Juan Lang juan.lang at gmail.com
Tue Sep 28 21:34:43 CDT 2010


Hi Gerald,

> This mimicks what we already do a few lines above for buf_type.

It's also unneeded:

    switch(ioctl & 0x18000000)

There are only 4 possible combinations of ioctl & 0x18000000.  Three
are covered in this switch statement, and the fourth is eliminated due
to the outer switch statement.  You'd be adding dead code.
--Juan



More information about the wine-devel mailing list