mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 06:40:11 +01:00
fprintf() clean-up (bug 6730)
This commit is contained in:
parent
263fff44b4
commit
9cd1cc0535
1 changed files with 1 additions and 3 deletions
|
|
@ -24,8 +24,6 @@ static void usage( char *name )
|
|||
static void args(int argc, char *argv[])
|
||||
{
|
||||
GLint i;
|
||||
|
||||
fprintf(stderr, "%d\n", argc);
|
||||
|
||||
for (i = 1; i < argc; i++) {
|
||||
if (strncmp(argv[i], "-n", 2) == 0) {
|
||||
|
|
@ -70,7 +68,7 @@ static void Init( void )
|
|||
exit(1);
|
||||
}
|
||||
|
||||
fprintf(stderr, "%*s\n", sz, buf);
|
||||
fprintf(stderr, "%.*s\n", sz, buf);
|
||||
|
||||
glGenProgramsARB(1, &prognum);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue