From 80a63123907c3291d8bdc6d364bf7343f4f084a0 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 18 May 2007 23:56:34 +0000 Subject: [PATCH] r23006: Arg. Fix stupid typo in 64-bit path. Jeremy. --- source/lib/time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/lib/time.c b/source/lib/time.c index ba158fe1ae9..ae7f97790d4 100644 --- a/source/lib/time.c +++ b/source/lib/time.c @@ -579,7 +579,7 @@ time_t convert_uint32_to_time_t(uint32 u) if (u == 0x80000000) { return (time_t)0x8000000000000000LL; } else if (u == 0x7FFFFFFF) { - return (time_t)0x7FFFFFFFFFFFFFFFLL) { + return (time_t)0x7FFFFFFFFFFFFFFFLL; } #endif return (time_t)u; -- 2.34.1