summaryrefslogtreecommitdiff
path: root/src/egl
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-03-25 08:17:37 -0600
committerBrian Paul <brianp@vmware.com>2009-03-25 08:18:28 -0600
commit66b0b200ee53fe342466513640deef55619cab17 (patch)
tree00a768c10a8bc8beceedb7b65e2ae8fbdfb87160 /src/egl
parent7c8639e007c2daeb0a192c30bb56a9716b65da20 (diff)
egl: don't use __FUNCTION__ in error messages
Diffstat (limited to 'src/egl')
-rw-r--r--src/egl/main/eglconfigutil.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/egl/main/eglconfigutil.c b/src/egl/main/eglconfigutil.c
index 7061df691b2..138dc729e74 100644
--- a/src/egl/main/eglconfigutil.c
+++ b/src/egl/main/eglconfigutil.c
@@ -192,8 +192,8 @@ _eglFillInConfigs(_EGLConfig * configs,
if ( bytes_per_pixel[index] == 0 ) {
_eglLog(_EGL_INFO,
- "[%s:%u] Framebuffer type 0x%04x has 0 bytes per pixel.",
- __FUNCTION__, __LINE__, fb_type);
+ "[_eglFillInConfigs:%u] Framebuffer type 0x%04x has 0 bytes per pixel.",
+ __LINE__, fb_type);
return GL_FALSE;
}
@@ -227,8 +227,8 @@ _eglFillInConfigs(_EGLConfig * configs,
default:
_eglLog(_EGL_WARNING,
- "[%s:%u] Framebuffer format 0x%04x is not GL_RGB, GL_RGBA, GL_BGR, or GL_BGRA.",
- __FUNCTION__, __LINE__, fb_format);
+ "[_eglFillInConfigs:%u] Framebuffer format 0x%04x is not GL_RGB, GL_RGBA, GL_BGR, or GL_BGRA.",
+ __LINE__, fb_format);
return GL_FALSE;
}