From 264767485d491ad006e31007707109f99a87a3a7 Mon Sep 17 00:00:00 2001 From: "troy%netscape.com" Date: Fri, 23 Oct 1998 17:14:27 +0000 Subject: [PATCH] Attempt to fix Unix builds. Evidently the #define copied from a VC++ header file is particular to Microsoft's compiler. Bastards... --- layout/html/content/src/nsHTMLLayerElement.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layout/html/content/src/nsHTMLLayerElement.cpp b/layout/html/content/src/nsHTMLLayerElement.cpp index 7315dda93d2..5707679b478 100644 --- a/layout/html/content/src/nsHTMLLayerElement.cpp +++ b/layout/html/content/src/nsHTMLLayerElement.cpp @@ -28,7 +28,7 @@ #include "nsIPresContext.h" #include "nsIHTMLAttributes.h" -#define _I32_MIN (-2147483647i32 - 1) /* minimum signed 32 bit value */ +#define _I32_MIN (-2147483647 - 1) /* minimum signed 32 bit value */ static NS_DEFINE_IID(kIDOMHTMLLayerElementIID, NS_IDOMHTMLELEMENT_IID);