From: Vinson Lee Date: Sun, 31 Jan 2010 06:36:54 +0000 (-0800) Subject: i915: Set bit field of length 1 light_twoside to unsigned. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5ad488908b39b8f2278a00c9d2cbce76dd925ad1;p=mesa.git i915: Set bit field of length 1 light_twoside to unsigned. --- diff --git a/src/gallium/drivers/i915/i915_context.h b/src/gallium/drivers/i915/i915_context.h index 37cbd56036b..6ec5566d5df 100644 --- a/src/gallium/drivers/i915/i915_context.h +++ b/src/gallium/drivers/i915/i915_context.h @@ -167,7 +167,7 @@ struct i915_depth_stencil_state { }; struct i915_rasterizer_state { - int light_twoside : 1; + unsigned light_twoside : 1; unsigned st; enum interp_mode color_interp;