summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/lib/time.c2
1 files changed, 1 insertions, 1 deletions
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;