summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2011-03-14 09:51:41 -0700
committerVinson Lee <vlee@vmware.com>2011-03-14 09:51:41 -0700
commit23b85db68c50889c9352342f9ffcbb8f520f9eec (patch)
tree1ff3eb30cf82e95d6574aaa9c28000e02da7547a
parentf13772134a2666398a77cc9707bb2a72a85ae1b6 (diff)
glean/pixelFormats: s/__func__/__FUNCTION__/
__func__ is not available on MSVC.
-rw-r--r--tests/glean/tpixelformats.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/glean/tpixelformats.cpp b/tests/glean/tpixelformats.cpp
index 60f4825c6..50283774b 100644
--- a/tests/glean/tpixelformats.cpp
+++ b/tests/glean/tpixelformats.cpp
@@ -43,7 +43,7 @@
// Maybe add fragment program path as a 3rd envMode (below) someday.
#define USE_FRAG_PROG 0
-#define abort() do { printf("%s:%i\n", __func__, __LINE__); abort(); } while (0)
+#define abort() do { printf("%s:%i\n", __FUNCTION__, __LINE__); abort(); } while (0)
namespace GLEAN {