mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-27 02:20:38 +02:00
progs/xdemos: Silence compiler warnings in glxinfo.c.
This commit is contained in:
parent
d5be33477e
commit
15c6558a2e
1 changed files with 2 additions and 2 deletions
|
|
@ -116,7 +116,7 @@ print_extension_list(const char *ext)
|
|||
return;
|
||||
|
||||
width = indent;
|
||||
printf(indentString);
|
||||
printf("%s", indentString);
|
||||
i = j = 0;
|
||||
while (1) {
|
||||
if (ext[j] == ' ' || ext[j] == 0) {
|
||||
|
|
@ -126,7 +126,7 @@ print_extension_list(const char *ext)
|
|||
/* start a new line */
|
||||
printf("\n");
|
||||
width = indent;
|
||||
printf(indentString);
|
||||
printf("%s", indentString);
|
||||
}
|
||||
/* print the extension name between ext[i] and ext[j] */
|
||||
while (i < j) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue