From 82438c6ad5f60b6afc75c48cef72e18bef532468 Mon Sep 17 00:00:00 2001 From: Bradley Grainger Date: Tue, 15 Feb 2011 18:37:29 -0500 Subject: [PATCH] Fix #pragma message for MSVC. __LOC__ was renamed to _HB__LOC__ in cd7555 but the corresponding change wasn't made in hb-private.h. --- src/hb-private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-private.h b/src/hb-private.h index 96b946481..9f4f8b7d7 100644 --- a/src/hb-private.h +++ b/src/hb-private.h @@ -211,7 +211,7 @@ typedef GStaticMutex hb_mutex_t; #else #ifdef _MSC_VER -#pragma message(__LOC__"Could not find any system to define platform macros, library will NOT be thread-safe") +#pragma message(_HB__LOC__"Could not find any system to define platform macros, library will NOT be thread-safe") #else #warning "Could not find any system to define platform macros, library will NOT be thread-safe" #endif