Fix #pragma message for MSVC.

__LOC__ was renamed to _HB__LOC__ in cd7555 but the corresponding
change wasn't made in hb-private.h.
This commit is contained in:
Bradley Grainger 2011-02-15 18:37:29 -05:00 committed by Behdad Esfahbod
parent ba9ab8d6d9
commit 82438c6ad5
1 changed files with 1 additions and 1 deletions

View 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