diff options
author | Adam Jackson <ajax@redhat.com> | 2011-01-20 18:52:57 -0500 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2011-01-20 21:03:26 -0500 |
commit | c1fe0b155d0567440228aa5d9e36036f37670e3b (patch) | |
tree | eba48bdf454a87b59d89896a82a766602ab777ec | |
parent | b02e006b2733ea457df41791f6054309e4edf7f6 (diff) |
dmx: warning fix
dmxgc.c: In function ‘dmxChangeClip’:
dmxgc.c:386:5: warning: case label value exceeds maximum value for type
dmxgc.c:387:5: warning: case label value exceeds maximum value for type
dmxgc.c:388:5: warning: case label value exceeds maximum value for type
dmxgc.c:389:5: warning: case label value exceeds maximum value for type
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Adam Jackson <ajax@redhat.com>
-rw-r--r-- | hw/dmx/dmxgc.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/hw/dmx/dmxgc.c b/hw/dmx/dmxgc.c index 829200e6a..f10f9a074 100644 --- a/hw/dmx/dmxgc.c +++ b/hw/dmx/dmxgc.c @@ -383,12 +383,7 @@ void dmxChangeClip(GCPtr pGC, int type, pointer pvalue, int nrects) break; case CT_PIXMAP: - case CT_UNSORTED: - case CT_YSORTED: - case CT_YXSORTED: - case CT_YXBANDED: - /* These clip types are condensed down to either NONE or REGION - in the mi code */ + /* Condensed down to REGION in the mi code */ break; } |