mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 07:18:17 +02:00
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:
parent
4719ad79ec
commit
897a5fa360
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue