From 7a4ea3447a7030c51c329461d701a461f0445a90 Mon Sep 17 00:00:00 2001 From: NicJA Date: Wed, 20 Apr 2016 21:44:35 +0000 Subject: [PATCH] fix build on 64bit git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@52671 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- workbench/network/smbfs/source_code/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workbench/network/smbfs/source_code/main.c b/workbench/network/smbfs/source_code/main.c index 37f4a45bcc..f325bcc172 100755 --- a/workbench/network/smbfs/source_code/main.c +++ b/workbench/network/smbfs/source_code/main.c @@ -5982,7 +5982,7 @@ Action_LockRecord ( if (timeout > 0) { if (timeout > 214748364) - timeout = ~0UL; /* wait forever */ + timeout = ~0; /* wait forever */ else timeout *= 20; /* milliseconds instead of Ticks */ } -- 2.11.4.GIT