aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/programs/Xserver/randr/rrproperty.c
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2016-06-07 10:14:50 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2016-06-21 04:06:27 +0200
commitb943cfe2afbd593e814de47b2f13f8b3b1af78da (patch)
tree54787a27baf87d7e4842aee60cb9c04881901898 /nx-X11/programs/Xserver/randr/rrproperty.c
parente2b0f279ec4932cde94a29e155a286b03a3d7c40 (diff)
downloadnx-libs-b943cfe2afbd593e814de47b2f13f8b3b1af78da.tar.gz
nx-libs-b943cfe2afbd593e814de47b2f13f8b3b1af78da.tar.bz2
nx-libs-b943cfe2afbd593e814de47b2f13f8b3b1af78da.zip
Drop trailing whitespaces (randr extension)
sed -i "s/[ ]\+$//g" randr/*.{c,h} happy reviewing... git diff -w is an empty diff.
Diffstat (limited to 'nx-X11/programs/Xserver/randr/rrproperty.c')
-rw-r--r--nx-X11/programs/Xserver/randr/rrproperty.c56
1 files changed, 28 insertions, 28 deletions
diff --git a/nx-X11/programs/Xserver/randr/rrproperty.c b/nx-X11/programs/Xserver/randr/rrproperty.c
index 4b73336e8..5d39d1402 100644
--- a/nx-X11/programs/Xserver/randr/rrproperty.c
+++ b/nx-X11/programs/Xserver/randr/rrproperty.c
@@ -187,20 +187,20 @@ RRChangeOutputProperty (RROutputPtr output, Atom property, Atom type,
old_data = NULL;
break;
case PropModeAppend:
- new_data = (void *) (((char *) new_value.data) +
+ new_data = (void *) (((char *) new_value.data) +
(prop_value->size * size_in_bytes));
old_data = new_value.data;
break;
case PropModePrepend:
new_data = new_value.data;
- old_data = (void *) (((char *) new_value.data) +
+ old_data = (void *) (((char *) new_value.data) +
(prop_value->size * size_in_bytes));
break;
}
if (new_data)
memcpy ((char *) new_data, (char *) value, len * size_in_bytes);
if (old_data)
- memcpy ((char *) old_data, (char *) prop_value->data,
+ memcpy ((char *) old_data, (char *) prop_value->data,
prop_value->size * size_in_bytes);
if (pending && pScrPriv->rrOutputSetProperty &&
@@ -253,7 +253,7 @@ RRPostPendingProperties (RROutputPtr output)
if (!output->pendingProperties)
return TRUE;
-
+
output->pendingProperties = FALSE;
for (property = output->properties; property; property = property->next)
{
@@ -289,13 +289,13 @@ RRPropertyPtr
RRQueryOutputProperty (RROutputPtr output, Atom property)
{
RRPropertyPtr prop;
-
+
for (prop = output->properties; prop; prop = prop->next)
if (prop->propertyName == property)
return prop;
return NULL;
}
-
+
RRPropertyValuePtr
RRGetOutputProperty (RROutputPtr output, Atom property, Bool pending)
{
@@ -326,7 +326,7 @@ RRConfigureOutputProperty (RROutputPtr output, Atom property,
add = TRUE;
} else if (prop->immutable && !immutable)
return(BadAccess);
-
+
/*
* ranges must have even number of values
*/
@@ -338,7 +338,7 @@ RRConfigureOutputProperty (RROutputPtr output, Atom property,
return BadAlloc;
if (num_values)
memcpy (new_values, values, num_values * sizeof (INT32));
-
+
/*
* Property moving from pending to non-pending
* loses any pending values
@@ -375,11 +375,11 @@ ProcRRListOutputProperties (ClientPtr client)
int numProps = 0;
RROutputPtr output;
RRPropertyPtr prop;
-
+
REQUEST_SIZE_MATCH(xRRListOutputPropertiesReq);
output = LookupOutput (client, stuff->output, DixReadAccess);
-
+
if (!output)
return RRErrorBase + BadRROutput;
@@ -393,7 +393,7 @@ ProcRRListOutputProperties (ClientPtr client)
rep.length = (numProps * sizeof(Atom)) >> 2;
rep.sequenceNumber = client->sequence;
rep.nAtoms = numProps;
- if (client->swapped)
+ if (client->swapped)
{
int n;
swaps (&rep.sequenceNumber, n);
@@ -422,18 +422,18 @@ ProcRRQueryOutputProperty (ClientPtr client)
RROutputPtr output;
RRPropertyPtr prop;
char *extra;
-
+
REQUEST_SIZE_MATCH(xRRQueryOutputPropertyReq);
output = LookupOutput (client, stuff->output, DixReadAccess);
-
+
if (!output)
return RRErrorBase + BadRROutput;
-
+
prop = RRQueryOutputProperty (output, stuff->property);
if (!prop)
return BadName;
-
+
if (prop->num_valid) {
extra = xalloc(prop->num_valid * sizeof(INT32));
if (!extra)
@@ -445,7 +445,7 @@ ProcRRQueryOutputProperty (ClientPtr client)
rep.pending = prop->is_pending;
rep.range = prop->range;
rep.immutable = prop->immutable;
- if (client->swapped)
+ if (client->swapped)
{
int n;
swaps (&rep.sequenceNumber, n);
@@ -469,18 +469,18 @@ ProcRRConfigureOutputProperty (ClientPtr client)
REQUEST(xRRConfigureOutputPropertyReq);
RROutputPtr output;
int num_valid;
-
+
REQUEST_AT_LEAST_SIZE(xRRConfigureOutputPropertyReq);
output = LookupOutput (client, stuff->output, DixReadAccess);
-
+
if (!output)
return RRErrorBase + BadRROutput;
-
+
num_valid = stuff->length - (sizeof (xRRConfigureOutputPropertyReq) >> 2);
return RRConfigureOutputProperty (output, stuff->property,
stuff->pending, stuff->range,
- FALSE, num_valid,
+ FALSE, num_valid,
(INT32 *) (stuff + 1));
}
@@ -520,7 +520,7 @@ ProcRRChangeOutputProperty (ClientPtr client)
output = LookupOutput (client, stuff->output, DixWriteAccess);
if (!output)
return RRErrorBase + BadRROutput;
-
+
if (!ValidAtom(stuff->property))
{
client->errorValue = stuff->property;
@@ -546,13 +546,13 @@ ProcRRDeleteOutputProperty (ClientPtr client)
{
REQUEST(xRRDeleteOutputPropertyReq);
RROutputPtr output;
-
+
REQUEST_SIZE_MATCH(xRRDeleteOutputPropertyReq);
UpdateCurrentTime();
output = LookupOutput (client, stuff->output, DixWriteAccess);
if (!output)
return RRErrorBase + BadRROutput;
-
+
if (!ValidAtom(stuff->property))
{
client->errorValue = stuff->property;
@@ -578,7 +578,7 @@ ProcRRGetOutputProperty (ClientPtr client)
REQUEST_SIZE_MATCH(xRRGetOutputPropertyReq);
if (stuff->delete)
UpdateCurrentTime();
- output = LookupOutput (client, stuff->output,
+ output = LookupOutput (client, stuff->output,
stuff->delete ? DixWriteAccess :
DixReadAccess);
if (!output)
@@ -601,12 +601,12 @@ ProcRRGetOutputProperty (ClientPtr client)
}
for (prev = &output->properties; (prop = *prev); prev = &prop->next)
- if (prop->propertyName == stuff->property)
+ if (prop->propertyName == stuff->property)
break;
reply.type = X_Reply;
reply.sequenceNumber = client->sequence;
- if (!prop)
+ if (!prop)
{
reply.nItems = 0;
reply.length = 0;
@@ -633,7 +633,7 @@ ProcRRGetOutputProperty (ClientPtr client)
prop_value = &prop->pending;
else
prop_value = &prop->current;
-
+
/* If the request type and actual type don't match. Return the
property information, but not the data. */
@@ -663,7 +663,7 @@ ProcRRGetOutputProperty (ClientPtr client)
* Return type, format, value to client
*/
n = (prop_value->format/8) * prop_value->size; /* size (bytes) of prop */
- ind = stuff->longOffset << 2;
+ ind = stuff->longOffset << 2;
/* If longOffset is invalid such that it causes "len" to
be negative, it's a value error. */