summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Engestrom <[email protected]>2018-08-08 15:26:32 +0100
committerEric Engestrom <[email protected]>2018-08-09 11:20:18 +0100
commitaac80f75973b61a8a31f873a9de6bcf294ea493c (patch)
tree8dc01475a4969dcc74f4990cfbbb4b3f2e97c2a9
parente0de26eacc93f431962533f50d57e58335843d6b (diff)
intel/tools: add missing variable initialisation
Fixes: 6a60beba4089315685b8 "intel/tools: Add an error state to aub translator" Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Lionel Landwerlin <[email protected]>
-rw-r--r--src/intel/tools/error2aub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/tools/error2aub.c b/src/intel/tools/error2aub.c
index 3407dcec0b7..2030593691c 100644
--- a/src/intel/tools/error2aub.c
+++ b/src/intel/tools/error2aub.c
@@ -205,7 +205,7 @@ main(int argc, char *argv[])
BO_TYPE_UNKNOWN = 0,
BO_TYPE_BATCH,
BO_TYPE_USER,
- } bo_type;
+ } bo_type = BO_TYPE_UNKNOWN;
uint64_t bo_addr;
char *line = NULL;