Author: fperrad Date: Tue Nov 20 00:55:10 2007 New Revision: 22904 Modified: trunk/config/gen/platform/win32/stat.c
Log: [win32] clean up warnings (switch missing default case) Modified: trunk/config/gen/platform/win32/stat.c ============================================================================== --- trunk/config/gen/platform/win32/stat.c (original) +++ trunk/config/gen/platform/win32/stat.c Tue Nov 20 00:55:10 2007 @@ -134,6 +134,8 @@ case STAT_PLATFORM_BLOCKS: real_exception(interp, NULL, 1, "STAT_PLATFORM_BLOCKS not supported"); break; + default: + break; } string_cstring_free(filename); @@ -216,6 +218,8 @@ case STAT_PLATFORM_BLOCKS: real_exception(interp, NULL, 1, "STAT_PLATFORM_BLOCKS not supported"); break; + default: + break; } return result;