From 73d581434344a5f61704819ab0bea472c4d83e79 Mon Sep 17 00:00:00 2001
From: imonroe <imonroe@cfc7b370-4200-0410-a6e3-cb6bdb053afe>
Date: Wed, 25 Oct 2006 17:01:57 +0000
Subject: [PATCH] compile fix for macro

---
 campcaster/src/modules/core/include/LiveSupport/Core/Debug.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/campcaster/src/modules/core/include/LiveSupport/Core/Debug.h b/campcaster/src/modules/core/include/LiveSupport/Core/Debug.h
index fbc46fc5d..a9369ca10 100644
--- a/campcaster/src/modules/core/include/LiveSupport/Core/Debug.h
+++ b/campcaster/src/modules/core/include/LiveSupport/Core/Debug.h
@@ -242,7 +242,7 @@ namespace Debug
 #define DEBUG_BLOCK Debug::Block uniquelyNamedStackAllocatedStandardBlock( __PRETTY_FUNCTION__ );
 
 /// Standard function announcer
-#define DEBUG_FUNC_INFO { debug() << "[" __PRETTY_FUNCTION__ "]" << endl; }
+#define DEBUG_FUNC_INFO { debug() << '[' << __PRETTY_FUNCTION__ << ']' << endl; }
 
 /// Announce a line
-#define DEBUG_LINE_INFO {  debug() << "[" __PRETTY_FUNCTION__ "]" << "Line: " << __LINE__ << endl; }
+#define DEBUG_LINE_INFO {  debug() << '[' << __PRETTY_FUNCTION__ << ']' << "Line: " << __LINE__ << endl; }