mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-07 00:00:12 +01:00
mesa: add const qualifier in check_for_ending() to silence warning
This commit is contained in:
parent
225276c696
commit
e77fc1279a
1 changed files with 1 additions and 1 deletions
|
|
@ -31,7 +31,7 @@
|
|||
* Scans 'string' to see if it ends with 'ending'.
|
||||
*/
|
||||
static GLboolean
|
||||
check_for_ending(char *string, const char *ending)
|
||||
check_for_ending(const char *string, const char *ending)
|
||||
{
|
||||
int len1, len2;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue