From bc80b12bba1f35676b0df158c61648b2eef4c5b0 Mon Sep 17 00:00:00 2001 From: David Turner Date: Wed, 26 Jul 2000 22:29:22 +0000 Subject: [PATCH] small compilation fix on 64-bits machines.. --- include/freetype/internal/ftcalc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/freetype/internal/ftcalc.h b/include/freetype/internal/ftcalc.h index 99b6cfaf6..33e7e4dad 100644 --- a/include/freetype/internal/ftcalc.h +++ b/include/freetype/internal/ftcalc.h @@ -27,10 +27,10 @@ #endif -#ifdef LONG64 +#ifdef FT_LONG64 - typedef INT64 FT_Int64; + typedef FT_INT64 FT_Int64; #define ADD_64( x, y, z ) z = (x) + (y) #define MUL_64( x, y, z ) z = (FT_Int64)(x) * (y)