mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 13:00:09 +01:00
r600g: fix printf warning
This commit is contained in:
parent
e81ee67b51
commit
830b6f3273
1 changed files with 2 additions and 1 deletions
|
|
@ -40,6 +40,7 @@
|
|||
#include "r600_formats.h"
|
||||
#include "compute_memory_pool.h"
|
||||
#include "evergreen_compute_internal.h"
|
||||
#include <inttypes.h>
|
||||
|
||||
static struct r600_texture * create_pool_texture(struct r600_screen * screen,
|
||||
unsigned size_in_dw)
|
||||
|
|
@ -375,7 +376,7 @@ void compute_memory_free(struct compute_memory_pool* pool, int64_t id)
|
|||
}
|
||||
}
|
||||
|
||||
fprintf(stderr, "Internal error, invalid id %ld "
|
||||
fprintf(stderr, "Internal error, invalid id %"PRIi64" "
|
||||
"for compute_memory_free\n", id);
|
||||
|
||||
assert(0 && "error");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue