diff options
author | Vinson Lee <[email protected]> | 2009-11-20 14:31:42 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2009-11-20 14:31:42 -0800 |
commit | f6541773c4661247879995637207dcc5803bbf00 (patch) | |
tree | 054625cd7e833b25a2e964b48580055f1f1dab33 /src/gallium | |
parent | 36e2074b63e3e5bc489eb74cad0cd97eafcedb40 (diff) |
i915g: Add missing break statement in i915_debug.c.
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/i915/i915_debug.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/i915/i915_debug.c b/src/gallium/drivers/i915/i915_debug.c index e6640e587b4..c6e6d6fd313 100644 --- a/src/gallium/drivers/i915/i915_debug.c +++ b/src/gallium/drivers/i915/i915_debug.c @@ -851,6 +851,7 @@ static boolean i915_debug_packet( struct debug_stream *stream ) default: return debug(stream, "", 0); } + break; default: assert(0); return 0; |