summaryrefslogtreecommitdiff
path: root/dix/property.c
diff options
context:
space:
mode:
authorPeter Hutterer <peter@cs.unisa.edu.au>2007-03-08 17:50:19 +1030
committerPeter Hutterer <peter@cs.unisa.edu.au>2007-03-08 17:50:25 +1030
commit63169ce52d354b4345dcfc46b89f0ea88379718f (patch)
treee99b601c118e86282607e29557e0d932d42a4f57 /dix/property.c
parent40ae4f246d8818410490236ab183204a84765629 (diff)
dix: remove 'register' keyword for all variables.
Diffstat (limited to 'dix/property.c')
-rw-r--r--dix/property.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/dix/property.c b/dix/property.c
index d40284901..034d86f63 100644
--- a/dix/property.c
+++ b/dix/property.c
@@ -76,7 +76,7 @@ static void
PrintPropertys(WindowPtr pWin)
{
PropertyPtr pProp;
- register int j;
+ int j;
pProp = pWin->userProps;
while (pProp)
@@ -97,7 +97,7 @@ ProcRotateProperties(ClientPtr client)
int i, j, delta, rc;
REQUEST(xRotatePropertiesReq);
WindowPtr pWin;
- register Atom * atoms;
+ Atom * atoms;
PropertyPtr * props; /* array of pointer */
PropertyPtr pProp;
xEvent event;
@@ -622,7 +622,7 @@ ProcListProperties(ClientPtr client)
}
int
-ProcDeleteProperty(register ClientPtr client)
+ProcDeleteProperty(ClientPtr client)
{
WindowPtr pWin;
REQUEST(xDeletePropertyReq);