diff options
author | Craig A. Berry <craigberry@mac.com> | 2020-03-19 13:10:35 -0500 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2020-03-19 13:13:03 -0500 |
commit | b33ac5557cb0255702946345f30e9a5ef0e8d88f (patch) | |
tree | 10e9b53722bcbee0a361cfdbb559d3632634e51b /vms | |
parent | 9ffb844176f21e9b4627ffc83b3903bf5ac73dd8 (diff) | |
download | perl-b33ac5557cb0255702946345f30e9a5ef0e8d88f.tar.gz |
vmsish.h: Fix missing semicolon from 2bc5f86
Diffstat (limited to 'vms')
-rw-r--r-- | vms/vmsish.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vms/vmsish.h b/vms/vmsish.h index 3fae5d781e..a0003e90bc 100644 --- a/vms/vmsish.h +++ b/vms/vmsish.h @@ -310,7 +310,7 @@ struct interp_intern { #define BIT_BUCKET "/dev/null" #define PERL_SYS_INIT_BODY(c,v) MALLOC_CHECK_TAINT2(*c,*v) vms_image_init((c),(v)); PERLIO_INIT; MALLOC_INIT #define PERL_SYS_TERM_BODY() HINTS_REFCNT_TERM; OP_REFCNT_TERM; \ - PERLIO_TERM; MALLOC_TERM; LOCALE_TERM \ + PERLIO_TERM; MALLOC_TERM; LOCALE_TERM; \ ENV_TERM; #define dXSUB_SYS dNOOP #define HAS_KILL |