Fix #pragma message for MSVC.
authorBradley Grainger <bgrainger@logos.com>
Tue, 15 Feb 2011 23:37:29 +0000 (18:37 -0500)
committerBehdad Esfahbod <behdad@behdad.org>
Tue, 15 Feb 2011 23:37:29 +0000 (18:37 -0500)
__LOC__ was renamed to _HB__LOC__ in cd7555 but the corresponding
change wasn't made in hb-private.h.

src/hb-private.h

index 96b9464..9f4f8b7 100644 (file)
@@ -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