Fix a typo in main.py

This patch fixes a typo "false" in main.py. The right token should
be "False".

Change-Id: Ic56f6f3290b30ce2dd56dbe1ce4c31821b981723
Reviewed-on: https://dawn-review.googlesource.com/1560
Commit-Queue: Jiawei Shao <jiawei.shao@intel.com>
Reviewed-by: Corentin Wallez <cwallez@chromium.org>
This commit is contained in:
Jiawei Shao 2018-09-21 06:55:25 +00:00 committed by Commit Bot service account
parent 386b8889bd
commit c2283ed1b2
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ def link_object(obj, types):
arg.length = "constant"
arg.constant_length = 1
else:
assert(false)
assert(False)
elif a['length'] == 'strlen':
arg.length = 'strlen'
else: