diff options
author | José Fonseca <[email protected]> | 2014-01-23 13:23:43 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2014-01-23 13:23:43 +0000 |
commit | 6b6fdb6aa998520e2026b993e658b6d9d7b2210f (patch) | |
tree | 4d5b53164ab5ddde78728d8178b7824ad8b43241 /src/gallium/drivers/radeon | |
parent | ab5dc45b2fb7447dcb4f48b3f83f75e271eca9b6 (diff) |
radeon: Adding missing stdio.h include.
Became apparent with the C11 thread changes. Unfortunately I didn't
have all dependencies to build the driver, and only noticed
this issue on build server.
Diffstat (limited to 'src/gallium/drivers/radeon')
-rw-r--r-- | src/gallium/drivers/radeon/r600_buffer_common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeon/r600_buffer_common.c b/src/gallium/drivers/radeon/r600_buffer_common.c index 66e9d578b65..d29671ec402 100644 --- a/src/gallium/drivers/radeon/r600_buffer_common.c +++ b/src/gallium/drivers/radeon/r600_buffer_common.c @@ -28,6 +28,7 @@ #include "util/u_memory.h" #include "util/u_upload_mgr.h" #include <inttypes.h> +#include <stdio.h> boolean r600_rings_is_buffer_referenced(struct r600_common_context *ctx, struct radeon_winsys_cs_handle *buf, |