summaryrefslogtreecommitdiff
path: root/Xext
diff options
context:
space:
mode:
authorJames Cloos <cloos@jhcloos.com>2008-11-08 12:18:13 -0500
committerJames Cloos <cloos@jhcloos.com>2008-11-08 12:21:20 -0500
commitb3c7e62664457a3802ebc23785446051624a8c2f (patch)
treeee5b7c80a614aca1f52fb8b0efb12d3689d7c767 /Xext
parent21c116219cd5c6845a0955f2d88fdb5fab5c17cf (diff)
Remove some null statements.
Remove several doubled statement-terminal semicolons. Reported by Fernando Carrijo.
Diffstat (limited to 'Xext')
-rw-r--r--Xext/panoramiX.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/Xext/panoramiX.c b/Xext/panoramiX.c
index d948702b2..bab8c9839 100644
--- a/Xext/panoramiX.c
+++ b/Xext/panoramiX.c
@@ -550,8 +550,8 @@ void PanoramiXExtensionInit(int argc, char *argv[])
ProcVector[X_SetClipRectangles] = PanoramiXSetClipRectangles;
ProcVector[X_FreeGC] = PanoramiXFreeGC;
ProcVector[X_ClearArea] = PanoramiXClearToBackground;
- ProcVector[X_CopyArea] = PanoramiXCopyArea;;
- ProcVector[X_CopyPlane] = PanoramiXCopyPlane;;
+ ProcVector[X_CopyArea] = PanoramiXCopyArea;
+ ProcVector[X_CopyPlane] = PanoramiXCopyPlane;
ProcVector[X_PolyPoint] = PanoramiXPolyPoint;
ProcVector[X_PolyLine] = PanoramiXPolyLine;
ProcVector[X_PolySegment] = PanoramiXPolySegment;
@@ -574,10 +574,10 @@ void PanoramiXExtensionInit(int argc, char *argv[])
ProcVector[X_AllocColor] = PanoramiXAllocColor;
ProcVector[X_AllocNamedColor] = PanoramiXAllocNamedColor;
ProcVector[X_AllocColorCells] = PanoramiXAllocColorCells;
- ProcVector[X_AllocColorPlanes] = PanoramiXAllocColorPlanes;
+ ProcVector[X_AllocColorPlanes] = PanoramiXAllocColorPlanes;
ProcVector[X_FreeColors] = PanoramiXFreeColors;
- ProcVector[X_StoreColors] = PanoramiXStoreColors;
- ProcVector[X_StoreNamedColor] = PanoramiXStoreNamedColor;
+ ProcVector[X_StoreColors] = PanoramiXStoreColors;
+ ProcVector[X_StoreNamedColor] = PanoramiXStoreNamedColor;
#ifdef RENDER
PanoramiXRenderInit ();