diff options
author | Brian Paul <[email protected]> | 2010-02-19 08:12:31 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-02-19 08:12:31 -0700 |
commit | 2240ba10f30315410bcff77e372ee71664ac4453 (patch) | |
tree | 6fbdf46df8c5081cefafcf1ab88d58ad7bffd609 /src/gallium/state_trackers | |
parent | e197de56cdb86835f1437688a9161cd909792d80 (diff) |
mesa: replace old MEMSET macro with memset
Diffstat (limited to 'src/gallium/state_trackers')
-rw-r--r-- | src/gallium/state_trackers/glx/xlib/glx_usefont.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/glx/xlib/glx_usefont.c b/src/gallium/state_trackers/glx/xlib/glx_usefont.c index e502198b204..8903b0e6cbd 100644 --- a/src/gallium/state_trackers/glx/xlib/glx_usefont.c +++ b/src/gallium/state_trackers/glx/xlib/glx_usefont.c @@ -343,7 +343,7 @@ glXUseXFont(Font font, int first, int count, int listbase) glNewList(list, GL_COMPILE); if (valid && (bm_width > 0) && (bm_height > 0)) { - MEMSET(bm, '\0', bm_width * bm_height); + memset(bm, '\0', bm_width * bm_height); fill_bitmap(dpy, win, gc, bm_width, bm_height, x, y, c, bm); glBitmap(width, height, x0, y0, dx, dy, bm); |