mesa: fix trivial typo in _mesa_PixelMapusv() error string
authorBrian Paul <brianp@vmware.com>
Wed, 18 Oct 2017 15:44:13 +0000 (09:44 -0600)
committerBrian Paul <brianp@vmware.com>
Wed, 18 Oct 2017 15:53:00 +0000 (09:53 -0600)
Signed-off-by: Brian Paul <brianp@vmware.com>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=103323

src/mesa/main/pixel.c

index 345c5d183537f9d4acdfe38fe91a6327f4e71784..a9a14df0e300e162c3341c1e0305631016e029cf 100644 (file)
@@ -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;
       }
    }