mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
Xext: Xv: use return value X_SEND_REPLY_SIMPLE()
Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
committed by
Enrico Weigelt
parent
39d0d9cb96
commit
3179c51bee
@@ -72,8 +72,7 @@ ProcXvQueryExtension(ClientPtr client)
|
||||
swaps(&reply.revision);
|
||||
}
|
||||
|
||||
X_SEND_REPLY_SIMPLE(client, reply);
|
||||
return Success;
|
||||
return X_SEND_REPLY_SIMPLE(client, reply);
|
||||
}
|
||||
|
||||
static int
|
||||
@@ -375,8 +374,7 @@ ProcXvGrabPort(ClientPtr client)
|
||||
.result = result
|
||||
};
|
||||
|
||||
X_SEND_REPLY_SIMPLE(client, reply);
|
||||
return Success;
|
||||
return X_SEND_REPLY_SIMPLE(client, reply);
|
||||
}
|
||||
|
||||
static int
|
||||
@@ -497,8 +495,7 @@ ProcXvGetPortAttribute(ClientPtr client)
|
||||
swapl(&reply.value);
|
||||
}
|
||||
|
||||
X_SEND_REPLY_SIMPLE(client, reply);
|
||||
return Success;
|
||||
return X_SEND_REPLY_SIMPLE(client, reply);
|
||||
}
|
||||
|
||||
static int
|
||||
@@ -527,8 +524,7 @@ ProcXvQueryBestSize(ClientPtr client)
|
||||
swaps(&reply.actual_height);
|
||||
}
|
||||
|
||||
X_SEND_REPLY_SIMPLE(client, reply);
|
||||
return Success;
|
||||
return X_SEND_REPLY_SIMPLE(client, reply);
|
||||
}
|
||||
|
||||
static int
|
||||
|
||||
Reference in New Issue
Block a user