summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2007-05-18 23:56:34 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:22:14 -0500
commit80a63123907c3291d8bdc6d364bf7343f4f084a0 (patch)
tree9e1de276f3c16471ebecdd082dcacc867fdd1b39 /source
parent4e1a0b2549f7c11326deed2801de19564af0f16a (diff)
downloadsamba-80a63123907c3291d8bdc6d364bf7343f4f084a0.tar.gz
samba-80a63123907c3291d8bdc6d364bf7343f4f084a0.tar.xz
samba-80a63123907c3291d8bdc6d364bf7343f4f084a0.zip
r23006: Arg. Fix stupid typo in 64-bit path.
Jeremy.
Diffstat (limited to 'source')
-rw-r--r--source/lib/time.c2
1 files changed, 1 insertions, 1 deletions
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;