diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2010-06-22 11:15:56 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2010-06-22 11:15:56 +0100 |
commit | c7bbaca6a376f40d914d1ed33e119f2330701c9a (patch) | |
tree | c8a69e3cf6ac077ee0d2d4fa6da2ecf680bebd09 | |
parent | cd34cbeb9f5c65b25d241700f27c16b36e1ecce6 (diff) | |
download | libdrm-c7bbaca6a376f40d914d1ed33e119f2330701c9a.tar.gz libdrm-c7bbaca6a376f40d914d1ed33e119f2330701c9a.tar.bz2 libdrm-c7bbaca6a376f40d914d1ed33e119f2330701c9a.zip |
intel: '===' != '=='
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
-rw-r--r-- | intel/intel_bufmgr_gem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/intel/intel_bufmgr_gem.c b/intel/intel_bufmgr_gem.c index 14b6d7bb..3931ec86 100644 --- a/intel/intel_bufmgr_gem.c +++ b/intel/intel_bufmgr_gem.c @@ -1738,7 +1738,7 @@ drm_intel_gem_bo_set_tiling(drm_intel_bo *bo, uint32_t * tiling_mode, /* Linear buffers have no stride. By ensuring that we only ever use * stride 0 with linear buffers, we simplify our code. */ - if (*tiling_mode === I915_TILING_NONE) + if (*tiling_mode == I915_TILING_NONE) stride = 0; ret = drm_intel_gem_bo_set_tiling_internal(bo, *tiling_mode, stride); |