Build fix for win32 with vc

From: Jordi Mas <jmas_at_softcatala.org>
Date: Sun Jul 31 2005 - 22:16:59 CEST

Hello Marc,

I cannot compile HEAD using VC. The problem is that VC does not support LL to
indicate long long. Here is a patch that fixes the problem.

Regards,

Jordi,

-- 
Jordi Mas i Hernāndez, HomePage http://www.softcatala.org/~jmas/
Bloc personal http://www.softcatala.org/~jmas/bloc/
Planeta Softcatalā: http://www.softcatala.org/planet/

? ut_Win32Misc.diff
? vc60.pdb
Index: ut_Win32Misc.cpp
===================================================================
RCS file: /cvsroot/abi/src/af/util/win/ut_Win32Misc.cpp,v
retrieving revision 1.13
diff -u -r1.13 ut_Win32Misc.cpp
--- ut_Win32Misc.cpp 24 Jul 2005 18:12:56 -0000 1.13
+++ ut_Win32Misc.cpp 31 Jul 2005 20:13:27 -0000
@@ -44,7 +44,7 @@
 
     ULARGE_INTEGER _100ns = {ft.dwLowDateTime,ft.dwHighDateTime};
 
- _100ns.QuadPart -= 0x19db1ded53e8000ULL;
+ _100ns.QuadPart -= 0x19db1ded53e8000U;
 
     tv->tv_sec = long (_100ns.QuadPart / (10000 * 1000));
     tv->tv_usec = (long) ((_100ns.LowPart % (DWORD) (10000 * 1000)) / 10);
Received on Sun Jul 31 22:57:19 2005

This archive was generated by hypermail 2.1.8 : Sun Jul 31 2005 - 22:57:20 CEST