diff options
author | Vinson Lee <vlee@vmware.com> | 2009-12-08 00:37:35 -0800 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2009-12-08 00:37:35 -0800 |
commit | 7e93e06781d2f3e0c737c7654c3fb0d83e31e45a (patch) | |
tree | d4f2ff384ccf23d64fe4fde4adca07e088719871 /src/gallium/drivers | |
parent | 7f8e22aa29b7340d51b1f2e16d55a035c0f9b851 (diff) |
i915g: Add missing break statement in i915_debug_packet.
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/i915simple/i915_debug.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/i915simple/i915_debug.c b/src/gallium/drivers/i915simple/i915_debug.c index ce92d1af9a..521b516470 100644 --- a/src/gallium/drivers/i915simple/i915_debug.c +++ b/src/gallium/drivers/i915simple/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; |