summaryrefslogtreecommitdiff
path: root/Porting/timecheck2.c
diff options
context:
space:
mode:
authorMichael G. Schwern <schwern@pobox.com>2020-12-28 18:04:52 -0800
committerKarl Williamson <khw@cpan.org>2021-01-17 09:18:15 -0700
commit1604cfb0273418ed479719f39def5ee559bffda2 (patch)
tree166a5ab935a029ab86cf6295d6f3cb77da22e559 /Porting/timecheck2.c
parent557ff1b2a4ecd18fe9229e7e0eb8fa123adc5670 (diff)
downloadperl-1604cfb0273418ed479719f39def5ee559bffda2.tar.gz
style: Detabify indentation of the C code maintained by the core.
This just detabifies to get rid of the mixed tab/space indentation. Applying consistent indentation and dealing with other tabs are another issue. Done with `expand -i`. * vutil.* left alone, it's part of version. * Left regen managed files alone for now.
Diffstat (limited to 'Porting/timecheck2.c')
-rw-r--r--Porting/timecheck2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Porting/timecheck2.c b/Porting/timecheck2.c
index 06d4a66cff..483e152a23 100644
--- a/Porting/timecheck2.c
+++ b/Porting/timecheck2.c
@@ -10,8 +10,8 @@ time_t Time_Zero = 0;
/* Visual C++ 2008's difftime() can't do negative times */
double my_difftime(time_t left, time_t right) {
- double diff = (double)left - (double)right;
- return diff;
+ double diff = (double)left - (double)right;
+ return diff;
}
void check_date_max( struct tm * (*date_func)(const time_t *), char *func_name ) {