mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2025-12-20 15:10:10 +01:00
xf86drm: fix warning in drmGetFormatModifierNameFromVivante()
Fixes the following warning:
../xf86drm.c: In function ‘drmGetFormatModifierNameFromVivante’:
../xf86drm.c:614:14: warning: passing argument 1 of ‘asprintf’ from incompatible pointer type [-Wincompatible-pointer-types]
614 | asprintf(&mod_vivante, "%s%s%s", color_tiling, tile_status, compression);
| ^~~~~~~~~~~~
| |
| const char **
In file included from ../xf86drm.c:34:
/usr/include/stdio.h:396:40: note: expected ‘char ** restrict’ but argument is of type ‘const char **’
396 | extern int asprintf (char **__restrict __ptr,
| ~~~~~~~~~~~~~~~~~~^~~~~
../xf86drm.c:615:12: warning: return discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
615 | return mod_vivante;
| ^~~~~~~~~~~
Signed-off-by: Simon Ser <contact@emersion.fr>
This commit is contained in:
parent
874af99463
commit
64d6fabaa1
1 changed files with 1 additions and 1 deletions
|
|
@ -555,7 +555,7 @@ static char *
|
||||||
drmGetFormatModifierNameFromVivante(uint64_t modifier)
|
drmGetFormatModifierNameFromVivante(uint64_t modifier)
|
||||||
{
|
{
|
||||||
const char *color_tiling, *tile_status, *compression;
|
const char *color_tiling, *tile_status, *compression;
|
||||||
const char *mod_vivante = NULL;
|
char *mod_vivante = NULL;
|
||||||
|
|
||||||
switch (modifier & VIVANTE_MOD_TS_MASK) {
|
switch (modifier & VIVANTE_MOD_TS_MASK) {
|
||||||
case 0:
|
case 0:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue