mesa/sso: Fix typo of 'unsigned'.

Fix build error introduced with commit f4c13a890f.

  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>
This commit is contained in:
Vinson Lee 2014-02-21 16:38:45 -08:00
parent 4719ad79ec
commit 897a5fa360

View 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);