From: Peter Hutterer Date: Wed, 5 Feb 2014 04:32:23 +0000 (+1000) Subject: xfree86: unconstify driver in the XF86ConfInputClassRec X-Git-Tag: xorg-server-1.15.99.901~10^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=72967d6c153b0d1109df23967e1a05c3c397a1e0;p=platform%2Fupstream%2Fxorg-server.git xfree86: unconstify driver in the XF86ConfInputClassRec No const value is ever assigned to it, let's not pretend it's const. Signed-off-by: Peter Hutterer Reviewed-by: Hans de Goede Reviewed-by: Keith Packard --- diff --git a/hw/xfree86/parser/xf86Parser.h b/hw/xfree86/parser/xf86Parser.h index d352d4b..8f855ac 100644 --- a/hw/xfree86/parser/xf86Parser.h +++ b/hw/xfree86/parser/xf86Parser.h @@ -305,7 +305,7 @@ typedef struct { typedef struct { GenericListRec list; char *identifier; - const char *driver; + char *driver; struct xorg_list match_product; struct xorg_list match_vendor; struct xorg_list match_device;