From 92dba2329fcdb00a756d670bbb303091426a4147 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 18 May 2007 23:56:34 +0000 Subject: r23006: Arg. Fix stupid typo in 64-bit path. Jeremy. (This used to be commit 80a63123907c3291d8bdc6d364bf7343f4f084a0) --- source3/lib/time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/lib/time.c b/source3/lib/time.c index ba158fe1ae..ae7f97790d 100644 --- a/source3/lib/time.c +++ b/source3/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; -- cgit