bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#720: marked as done (Patch to fix CVS Emacs compilation error on Win


From: Emacs bug Tracking System
Subject: bug#720: marked as done (Patch to fix CVS Emacs compilation error on Windows XP SP2.)
Date: Fri, 15 Aug 2008 10:45:05 -0700

Your message dated Fri, 15 Aug 2008 20:39:57 +0300
with message-id <uskt6dvo2.fsf@gnu.org>
and subject line Bug fixed
has caused the Emacs bug report #720,
regarding Patch to fix CVS Emacs compilation error on Windows XP SP2.
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact don@donarmstrong.com
immediately.)


-- 
720: http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=720
Emacs Bug Tracking System
Contact don@donarmstrong.com with problems
--- Begin Message --- Subject: Patch to fix CVS Emacs compilation error on Windows XP SP2. Date: Thu, 14 Aug 2008 12:57:56 -0400 User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1.50 (windows-nt)
When building CVS Emacs on Windows XP SP2 using Visual Studio 6.0, the
following patch is needed to prevent the compiler from displaying an
error about unsigned __int64 not being convertable to double.
--
Fran


--- w32.c~      2008-08-11 13:51:58.372421800 -0400
+++ w32.c       2008-08-14 12:54:29.192936600 -0400
@@ -3817,7 +3817,7 @@
                  attrs);
 
   if (global_memory_status_ex (&memstex))
-    totphys = memstex.ullTotalPhys / 1024.0;
+    totphys = (signed __int64)memstex.ullTotalPhys / 1024.0;
   else if (global_memory_status (&memst))
     totphys = memst.dwTotalPhys / 1024.0;
 




--- End Message ---
--- Begin Message --- Subject: Bug fixed Date: Fri, 15 Aug 2008 20:39:57 +0300
This bug is fixed.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]