summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--os2/os2.c2
-rw-r--r--pp_sys.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/os2/os2.c b/os2/os2.c
index 9c9e09b155..1016d9bebb 100644
--- a/os2/os2.c
+++ b/os2/os2.c
@@ -481,7 +481,7 @@ do_spawn_ve(pTHX_ SV *really, U32 flag, U32 execf, char *inicmd, U32 addflag)
char **argsp = fargs;
int nargs = 4;
int force_shell;
- int new_stderr = -1, nostderr = 0
+ int new_stderr = -1, nostderr = 0;
int fl_stderr = 0;
STRLEN n_a;
diff --git a/pp_sys.c b/pp_sys.c
index 0fa099e156..1ab778e2c6 100644
--- a/pp_sys.c
+++ b/pp_sys.c
@@ -3485,10 +3485,10 @@ PP(pp_link)
char *tmps = SvPV(TOPs, n_a);
TAINT_PROPER("link");
SETi( PerlLIO_link(tmps, tmps2) >= 0 );
+ RETURN;
#else
DIE(aTHX_ PL_no_func, "link");
#endif
- RETURN;
}
PP(pp_symlink)