From 666ef9d2c3b308172bc8f421330a83347a9ff6cc Mon Sep 17 00:00:00 2001
From: Bradley Grainger <bgrainger@logos.com>
Date: Sun, 13 Feb 2011 19:20:17 -0800
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 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/hb-private.h b/src/hb-private.h
index 96b9464..9f4f8b7 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
-- 
1.7.3.1.msysgit.0

