Mesa (master): mesa/sso: Fix typo of 'unsigned'.

Vinson Lee vlee at kemper.freedesktop.org
Sat Feb 22 00:42:32 UTC 2014


Module: Mesa
Branch: master
Commit: 897a5fa3605c7cae95e9d8826f1119c0b44055f2
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=897a5fa3605c7cae95e9d8826f1119c0b44055f2

Author: Vinson Lee <vlee at freedesktop.org>
Date:   Fri Feb 21 16:38:45 2014 -0800

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 <vlee at freedesktop.org>

---

 src/mesa/main/pipelineobj.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mesa/main/pipelineobj.c b/src/mesa/main/pipelineobj.c
index aaed9f9..54be4e0 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);
 




More information about the mesa-commit mailing list