diff options
author | Vinson Lee <[email protected]> | 2014-02-21 16:38:45 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2014-02-21 16:41:04 -0800 |
commit | 897a5fa3605c7cae95e9d8826f1119c0b44055f2 (patch) | |
tree | fa2c78e05de33a9aafc9ddb99a3c564396153ae1 /src/mesa/main/pipelineobj.c | |
parent | 4719ad79ec1cd84996b6366e05c7ae4bbb7fe5f5 (diff) |
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 <[email protected]>
Diffstat (limited to 'src/mesa/main/pipelineobj.c')
-rw-r--r-- | src/mesa/main/pipelineobj.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |