Skip to content

Commit

Permalink
[win32]
Browse files Browse the repository at this point in the history
clean up warnings (switch missing default case)

git-svn-id: https://svn.parrot.org/parrot/trunk@22904 d31e2699-5ff4-0310-a27c-f18f2fbe73fe
  • Loading branch information
fperrad committed Nov 20, 2007
1 parent 524b782 commit 8e37e5b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions config/gen/platform/win32/stat.c
Expand Up @@ -134,6 +134,8 @@ Parrot_stat_info_intval(Parrot_Interp interp, STRING *file, INTVAL thing)
case STAT_PLATFORM_BLOCKS:
real_exception(interp, NULL, 1, "STAT_PLATFORM_BLOCKS not supported");
break;
default:
break;
}

string_cstring_free(filename);
Expand Down Expand Up @@ -216,6 +218,8 @@ Parrot_fstat_info_intval(Parrot_Interp interp, INTVAL file, INTVAL thing)
case STAT_PLATFORM_BLOCKS:
real_exception(interp, NULL, 1, "STAT_PLATFORM_BLOCKS not supported");
break;
default:
break;
}

return result;
Expand Down

0 comments on commit 8e37e5b

Please sign in to comment.