diff options
author | Eric Engestrom <[email protected]> | 2019-06-29 13:59:37 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-06-29 22:41:06 +0100 |
commit | 42eb85a9d86b657e07bae46d91ccae406ef080e6 (patch) | |
tree | f2691048aaa61e6eac7fb098227d5a2cb9c6257a | |
parent | 38305e6c94ea31e0f775cbc693fea267023e3bc4 (diff) |
anv: fix typo
Signed-off-by: Eric Engestrom <[email protected]>
Reviewed-by: Lionel Landwerlin <[email protected]>
-rw-r--r-- | src/intel/vulkan/anv_icd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_icd.py b/src/intel/vulkan/anv_icd.py index 73cc6453d51..70e8c7af75b 100644 --- a/src/intel/vulkan/anv_icd.py +++ b/src/intel/vulkan/anv_icd.py @@ -28,7 +28,7 @@ from anv_extensions import MAX_API_VERSION if __name__ == '__main__': parser = argparse.ArgumentParser() - parser.add_argument('--out', help='Output jsono file.', required=True) + parser.add_argument('--out', help='Output json file.', required=True) parser.add_argument('--lib-path', help='Path to libvulkan_intel.so') args = parser.parse_args() |