st/xorg: Fix type of 'unknown'.
authorVinson Lee <vlee@vmware.com>
Fri, 20 Nov 2009 08:03:10 +0000 (00:03 -0800)
committerVinson Lee <vlee@vmware.com>
Fri, 20 Nov 2009 08:03:10 +0000 (00:03 -0800)
src/gallium/state_trackers/xorg/xorg_composite.c

index 86a5207..dd10e12 100644 (file)
@@ -152,7 +152,7 @@ render_filter_to_gallium(int xrender_filter, int *out_filter)
       *out_filter = PIPE_TEX_FILTER_LINEAR;
       break;
    default:
-      debug_printf("Unkown xrender filter\n");
+      debug_printf("Unknown xrender filter\n");
    case PictFilterConvolution:
       *out_filter = PIPE_TEX_FILTER_NEAREST;
       return FALSE;