diff options
author | Brian Paul <[email protected]> | 2017-10-18 09:44:13 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2017-10-18 09:53:00 -0600 |
commit | e17aa6cd9d42d4712f6df4f11a0cbac3735e55b4 (patch) | |
tree | 62d342ed6163fb788091258c786b19b8f0fcb171 /src/mesa | |
parent | 2515eb63f818eb4bcbe104718c9bfb2db6f77cc5 (diff) |
mesa: fix trivial typo in _mesa_PixelMapusv() error string
Signed-off-by: Brian Paul <[email protected]>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=103323
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/pixel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/pixel.c b/src/mesa/main/pixel.c index 345c5d18353..a9a14df0e30 100644 --- a/src/mesa/main/pixel.c +++ b/src/mesa/main/pixel.c @@ -283,7 +283,7 @@ _mesa_PixelMapusv(GLenum map, GLsizei mapsize, const GLushort *values ) if (map >= GL_PIXEL_MAP_S_TO_S && map <= GL_PIXEL_MAP_I_TO_A) { /* test that mapsize is a power of two */ if (!_mesa_is_pow_two(mapsize)) { - _mesa_error( ctx, GL_INVALID_VALUE, "glPixelMapuiv(mapsize)" ); + _mesa_error( ctx, GL_INVALID_VALUE, "glPixelMapusv(mapsize)" ); return; } } |