From d537e9cfe749f56a0f25aebb57aa30c22d039dac Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 1 Aug 2025 16:13:28 +0200 Subject: [PATCH] fixup fix bad #if --- src/tool_writeout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tool_writeout.c b/src/tool_writeout.c index 94592d1f14..3162733f52 100644 --- a/src/tool_writeout.c +++ b/src/tool_writeout.c @@ -572,7 +572,7 @@ static const char *outtime(const char *ptr, /* %time{ ... */ if(timestr) { curl_off_t val; curlx_str_number(×tr, &val, TIME_T_MAX); -#ifdef SIZEOF_TIME_T < 5 +#if SIZEOF_TIME_T < 5 cnow.tv_sec = (time_t)(val & 0xffffffff); #else cnow.tv_sec = (time_t)val;