Fix a Clang warning in Shiva.

This commit is contained in:
James Turner
2012-09-19 15:55:49 +01:00
committed by Thomas Geymayer
parent 5eac7974c9
commit 1b55076897

View File

@@ -132,10 +132,10 @@ int shIsEnumValid(SHint type, VGint val)
val == VG_COLOR_RAMP_SPREAD_REFLECT);
case VG_PAINT_PATTERN_TILING_MODE:
return (VG_TILE_FILL ||
VG_TILE_PAD ||
VG_TILE_REPEAT ||
VG_TILE_REFLECT);
return (val == VG_TILE_FILL ||
val == VG_TILE_PAD ||
val == VG_TILE_REPEAT ||
val == VG_TILE_REFLECT);
case VG_IMAGE_FORMAT:
return (val >= VG_sRGBX_8888 &&