mesa: s/MALLOC/malloc/
[mesa.git] / src / gallium / state_trackers / glx / xlib / glx_usefont.c
index fa5c93afa3327af42f98f81b8138237fed5dd923..5dac7a7dccd0934b3b6f2e71566488bbc028b68d 100644 (file)
@@ -241,7 +241,7 @@ glXUseXFont(Font font, int first, int count, int listbase)
    max_bm_width = (max_width + 7) / 8;
    max_bm_height = max_height;
 
-   bm = (GLubyte *) MALLOC((max_bm_width * max_bm_height) * sizeof(GLubyte));
+   bm = (GLubyte *) malloc((max_bm_width * max_bm_height) * sizeof(GLubyte));
    if (!bm) {
       XFreeFontInfo(NULL, fs, 1);
       _mesa_error(NULL, GL_OUT_OF_MEMORY,