projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
e99737f
)
Add missing ";" to pp_umask (spotted by Jarkko Hietaniemi).
Malcolm Beattie [Fri, 29 May 1998 15:18:33 +0000 (15:18 +0000)]
p4raw-id: //depot/perl@1062
pp_sys.c
patch
|
blob
|
blame
|
history
diff --git
a/pp_sys.c
b/pp_sys.c
index
3a6010f
..
ad9eee1
100644
(file)
--- a/
pp_sys.c
+++ b/
pp_sys.c
@@
-493,7
+493,7
@@
PP(pp_umask)
TAINT_PROPER("umask");
XPUSHi(anum);
#else
- XPUSHs(&sv_undef)
+ XPUSHs(&sv_undef);
#endif
RETURN;
}