mesa: fix _mesa_error() compiler warnings in shaderapi.c
authorBrian Paul <brianp@vmware.com>
Thu, 23 Jul 2015 13:47:25 +0000 (07:47 -0600)
committerBrian Paul <brianp@vmware.com>
Fri, 24 Jul 2015 02:19:51 +0000 (20:19 -0600)
commitdd86fbeaaa136c4ddfd255286f4975d869e799a0
tree3eb1d4e7900e144baf91588e147844aae8d6af54
parent43b69aad195f5abfc2c8c75bfa2ff31e5b99fbab
mesa: fix _mesa_error() compiler warnings in shaderapi.c

Fix many instances of:
main/shaderapi.c: In function '_mesa_GetSubroutineUniformLocation':
main/shaderapi.c:2176:7: warning: format not a string literal and no format arguments [-Wformat-security]
       _mesa_error(ctx, GL_INVALID_OPERATION, api_name);
       ^

Ideally, many of these error messages should be improved to indicate
which argument is incorrect as we do in other parts of Mesa.

Reviewed-by: Kai Wasserbäch <kai@dev.carbon-project.org>
Tested-by: Kai Wasserbäch <kai@dev.carbon-project.org>
src/mesa/main/shaderapi.c