From: Vinson Lee Date: Sat, 22 Feb 2014 00:38:45 +0000 (-0800) Subject: mesa/sso: Fix typo of 'unsigned'. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=897a5fa3605c7cae95e9d8826f1119c0b44055f2;p=mesa.git mesa/sso: Fix typo of 'unsigned'. 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 --- diff --git a/src/mesa/main/pipelineobj.c b/src/mesa/main/pipelineobj.c index aaed9f953af..54be4e00418 100644 --- a/src/mesa/main/pipelineobj.c +++ b/src/mesa/main/pipelineobj.c @@ -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);