diff options
author | James Cloos <cloos@jhcloos.com> | 2008-11-08 12:18:13 -0500 |
---|---|---|
committer | James Cloos <cloos@jhcloos.com> | 2008-11-08 12:21:20 -0500 |
commit | b3c7e62664457a3802ebc23785446051624a8c2f (patch) | |
tree | ee5b7c80a614aca1f52fb8b0efb12d3689d7c767 /hw/kdrive/fbdev/fbdev.c | |
parent | 21c116219cd5c6845a0955f2d88fdb5fab5c17cf (diff) |
Remove some null statements.
Remove several doubled statement-terminal semicolons.
Reported by Fernando Carrijo.
Diffstat (limited to 'hw/kdrive/fbdev/fbdev.c')
-rw-r--r-- | hw/kdrive/fbdev/fbdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/kdrive/fbdev/fbdev.c b/hw/kdrive/fbdev/fbdev.c index 04f697b9e..4eeca289a 100644 --- a/hw/kdrive/fbdev/fbdev.c +++ b/hw/kdrive/fbdev/fbdev.c @@ -770,7 +770,7 @@ fbdevGetColors (ScreenPtr pScreen, int fb, int n, xColorItem *pdefs) cmap.start = min; cmap.len = max - min + 1; cmap.red = &priv->red[min]; - cmap.green = &priv->green[min];; + cmap.green = &priv->green[min]; cmap.blue = &priv->blue[min]; cmap.transp = 0; k = ioctl (priv->fd, FBIOGETCMAP, &cmap); |