mesa: Fix printf-like warning.
This commit is contained in:
@@ -5589,7 +5589,7 @@ yyerror(YYLTYPE *locp, struct asm_parser_state *state, const char *s)
|
|||||||
|
|
||||||
err_str = make_error_string("glProgramStringARB(%s)\n", s);
|
err_str = make_error_string("glProgramStringARB(%s)\n", s);
|
||||||
if (err_str) {
|
if (err_str) {
|
||||||
_mesa_error(state->ctx, GL_INVALID_OPERATION, err_str);
|
_mesa_error(state->ctx, GL_INVALID_OPERATION, "%s", err_str);
|
||||||
free(err_str);
|
free(err_str);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -2628,7 +2628,7 @@ yyerror(YYLTYPE *locp, struct asm_parser_state *state, const char *s)
|
|||||||
|
|
||||||
err_str = make_error_string("glProgramStringARB(%s)\n", s);
|
err_str = make_error_string("glProgramStringARB(%s)\n", s);
|
||||||
if (err_str) {
|
if (err_str) {
|
||||||
_mesa_error(state->ctx, GL_INVALID_OPERATION, err_str);
|
_mesa_error(state->ctx, GL_INVALID_OPERATION, "%s", err_str);
|
||||||
free(err_str);
|
free(err_str);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user