diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-04-23 14:00:49 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-04-23 14:00:49 +0000 |
commit | 82c57498f7f8f27d0d5411ddaf2f473d905b3929 (patch) | |
tree | 0a7b77d42aaa7cb0269ebf9356734fa5ca55c5ec /util.c | |
parent | da4ddda1308ab0218fa0865029c9475e5cfe8bc6 (diff) | |
download | perl-82c57498f7f8f27d0d5411ddaf2f473d905b3929.tar.gz |
Variable declarations can't come after statements in C89.
p4raw-id: //depot/perl@24309
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3354,8 +3354,9 @@ Perl_init_tm(pTHX_ struct tm *ptm) /* see mktime, strftime and asctime */ { #ifdef HAS_TM_TM_ZONE Time_t now; + struct tm* my_tm; (void)time(&now); - struct tm* my_tm = localtime(&now); + my_tm = localtime(&now); if (my_tm) Copy(my_tm, ptm, 1, struct tm); #endif |