diff --git a/.pick_status.json b/.pick_status.json index bd3c51213d6..47e80221792 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -850,7 +850,7 @@ "description": "intel/tools: fix invalid type in argument to printf", "nominated": true, "nomination_type": 1, - "resolution": 0, + "resolution": 1, "master_sha": null, "because_sha": "70308a5a8a801a960bb9f45fb597f80b77c51014" }, diff --git a/src/intel/tools/i965_gram.y b/src/intel/tools/i965_gram.y index 2b657688e25..c98f147959e 100644 --- a/src/intel/tools/i965_gram.y +++ b/src/intel/tools/i965_gram.y @@ -2185,7 +2185,7 @@ execsize: | LPAREN exp2 RPAREN { if ($2 > 32 || !isPowerofTwo($2)) - error(&@2, "Invalid execution size %d\n", $2); + error(&@2, "Invalid execution size %llu\n", $2); $$ = cvt($2) - 1; }