mesa: s/MALLOC/malloc/
[mesa.git] / src / mesa / drivers / x11 / xfonts.c
index 91f819b8df25a1e2d14c9a6ca3a0ba3828ef3125..ac275bb6aefc980bb857c6226f589a580b439b03 100644 (file)
@@ -247,7 +247,7 @@ Fake_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,