summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-05-18 07:51:19 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-05-18 07:51:19 +0000
commitd2719217c9b7910115cef7ea0c16d68e6b286cf7 (patch)
tree8b388dce5c146bf58433ed543f610f8361103d80 /pp_ctl.c
parent3c78fafa1650432985234f9821e053d8f64c6224 (diff)
downloadperl-d2719217c9b7910115cef7ea0c16d68e6b286cf7.tar.gz
[win32] more whitespace tweaks from maintbranch
p4raw-id: //depot/win32/perl@1009
Diffstat (limited to 'pp_ctl.c')
-rw-r--r--pp_ctl.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index ede74b5ca7..61e940fcac 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -915,14 +915,16 @@ block_gimme(void)
return G_VOID;
switch (cxstack[cxix].blk_gimme) {
+ case G_VOID:
+ return G_VOID;
case G_SCALAR:
return G_SCALAR;
case G_ARRAY:
return G_ARRAY;
default:
croak("panic: bad gimme: %d\n", cxstack[cxix].blk_gimme);
- case G_VOID:
- return G_VOID;
+ /* NOTREACHED */
+ return 0;
}
}