intel/dev: fix 32bit build issue

Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Acked-by: Caio Marcelo de Oliveira Filho <caio.oliveira@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7049>
This commit is contained in:
Lionel Landwerlin 2020-10-07 22:21:23 +03:00 committed by Marge Bot
parent dd9c34a907
commit caea5a6a20
1 changed files with 2 additions and 1 deletions

View File

@ -24,6 +24,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <inttypes.h>
#include <sys/types.h>
#include <sys/stat.h>
@ -107,7 +108,7 @@ main(int argc, char *argv[])
fprintf(stdout, " max GS threads: %u\n", devinfo.max_gs_threads);
fprintf(stdout, " max WM threads: %u\n", devinfo.max_wm_threads);
fprintf(stdout, " max CS threads: %u\n", devinfo.max_cs_threads);
fprintf(stdout, " timestamp frequency: %lu\n", devinfo.timestamp_frequency);
fprintf(stdout, " timestamp frequency: %" PRIu64 "\n", devinfo.timestamp_frequency);
}
return EXIT_SUCCESS;