mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-24 15:50:37 +02:00
mesa: s/snprintf/_mesa_snprintf/
This commit is contained in:
parent
2470750b4e
commit
c4066b78c0
1 changed files with 2 additions and 1 deletions
|
|
@ -5648,7 +5648,8 @@ const char *_mesa_lookup_enum_by_nr( int nr )
|
|||
}
|
||||
else {
|
||||
/* this is not re-entrant safe, no big deal here */
|
||||
sprintf(token_tmp, "0x%x", nr);
|
||||
_mesa_snprintf(token_tmp, sizeof(token_tmp) - 1, "0x%x", nr);
|
||||
token_tmp[sizeof(token_tmp) - 1] = '\0';
|
||||
return token_tmp;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue