mesa: fix printf format warning in _mesa_fprint_program_parameters()

This commit is contained in:
Brian Paul
2011-11-29 07:26:01 -07:00
parent 1ad5a1a246
commit 76374e60cd
+2 -2
View File
@@ -925,8 +925,8 @@ _mesa_fprint_program_parameters(FILE *f,
{
GLuint i;
fprintf(f, "InputsRead: 0x%x (0b%s)\n",
prog->InputsRead, binary(prog->InputsRead));
fprintf(f, "InputsRead: 0x%llx (0b%s)\n",
(unsigned long long) prog->InputsRead, binary(prog->InputsRead));
fprintf(f, "OutputsWritten: 0x%llx (0b%s)\n",
(unsigned long long)prog->OutputsWritten,
binary(prog->OutputsWritten));