diff options
author | Greg Kroah-Hartman <gregkh@suse.de> | 2006-07-05 09:30:48 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-07-05 09:30:48 -0700 |
commit | 59836c0f2abee3339e1aa30dacadb82e477943d6 (patch) | |
tree | 712b65f6152b306b5c6247b4c112eef4fe26378c /hw/dmx/dmxcmap.c | |
parent | 12563db59dd613ecc926e3bed9534152ebc0a2fb (diff) |
fix wrong function pointer type in hw/dmx/dmxcmap.c
Diffstat (limited to 'hw/dmx/dmxcmap.c')
-rw-r--r-- | hw/dmx/dmxcmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/dmx/dmxcmap.c b/hw/dmx/dmxcmap.c index f46dc5411..b4279e7ce 100644 --- a/hw/dmx/dmxcmap.c +++ b/hw/dmx/dmxcmap.c @@ -46,7 +46,7 @@ #include "micmap.h" -static int dmxInitColormapPrivateFunc(ColormapPtr pColormap) +static int dmxInitColormapPrivateFunc(ColormapPtr pColormap, int index) { return TRUE; } |