mesa/sso: Fix typo of 'unsigned'.
authorVinson Lee <vlee@freedesktop.org>
Sat, 22 Feb 2014 00:38:45 +0000 (16:38 -0800)
committerVinson Lee <vlee@freedesktop.org>
Sat, 22 Feb 2014 00:41:04 +0000 (16:41 -0800)
Fix build error introduced with commit f4c13a890fa24ff1f998e7cac0ecc31505a29403.

  CC       pixeltransfer.lo
main/pipelineobj.c: In function '_mesa_delete_pipeline_object':
main/pipelineobj.c:59:4: error: unknown type name 'unsinged'
    unsinged i;
    ^

Signed-off-by: Vinson Lee <vlee@freedesktop.org>
src/mesa/main/pipelineobj.c

index aaed9f953af8f2ae68e42711ef36d345146977ef..54be4e0041854d4ab2b75d814b4e5bf1d7ae3caa 100644 (file)
@@ -56,7 +56,7 @@ void
 _mesa_delete_pipeline_object(struct gl_context *ctx,
                              struct gl_pipeline_object *obj)
 {
-   unsinged i;
+   unsigned i;
 
    _mesa_reference_shader_program(ctx, &obj->_CurrentFragmentProgram, NULL);