diff options
author | Jeremy Allison <jra@samba.org> | 2007-05-18 23:56:34 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:22:14 -0500 |
commit | 92dba2329fcdb00a756d670bbb303091426a4147 (patch) | |
tree | 9dc9626b74c161689949357efa73f6c28f3b689e | |
parent | c15c0f2a47caa61f0575a63d88d1481d34530643 (diff) | |
download | samba-92dba2329fcdb00a756d670bbb303091426a4147.tar.gz samba-92dba2329fcdb00a756d670bbb303091426a4147.tar.bz2 samba-92dba2329fcdb00a756d670bbb303091426a4147.zip |
r23006: Arg. Fix stupid typo in 64-bit path.
Jeremy.
(This used to be commit 80a63123907c3291d8bdc6d364bf7343f4f084a0)
-rw-r--r-- | source3/lib/time.c | 2 |
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; |