summaryrefslogtreecommitdiff
path: root/decode_bigreq.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2012-07-08 11:58:20 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2012-07-21 23:47:00 -0700
commitb8160915909e59fc65cc08855fb32fee6f5d89ad (patch)
tree4cb5717e10917d33b66c88a34398b55d31392eb2 /decode_bigreq.c
parent5b30118f1504fb065cf0b4aca150703834881d9e (diff)
downloadxscope-b8160915909e59fc65cc08855fb32fee6f5d89ad.tar.gz
Convert to X.Org standard indentation & cleanup whitespace
Performed with util/modular/x-indent-all.sh, followed by manual fixups Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'decode_bigreq.c')
-rw-r--r--decode_bigreq.c60
1 files changed, 29 insertions, 31 deletions
diff --git a/decode_bigreq.c b/decode_bigreq.c
index 242f16c..18f727c 100644
--- a/decode_bigreq.c
+++ b/decode_bigreq.c
@@ -21,7 +21,6 @@
* DEALINGS IN THE SOFTWARE.
*/
-
#include <stdio.h>
#include <X11/X.h>
#include <X11/Xproto.h>
@@ -33,51 +32,50 @@
static unsigned char BIGREQRequest;
static void
-bigreq_decode_req (
- FD fd,
- const unsigned char *buf)
+bigreq_decode_req(FD fd, const unsigned char *buf)
{
- short Major = IByte (&buf[0]);
- short Minor = IByte (&buf[1]);
+ short Major = IByte(&buf[0]);
+ short Minor = IByte(&buf[1]);
- switch (Minor) {
- case 0:
- CS[fd].bigreqEnabled = 1;
- BigreqEnable (fd, buf);
- ExtendedReplyExpected (fd, Major, Minor); break;
- default:
- break;
- }
+ switch (Minor) {
+ case 0:
+ CS[fd].bigreqEnabled = 1;
+ BigreqEnable(fd, buf);
+ ExtendedReplyExpected(fd, Major, Minor);
+ break;
+ default:
+ break;
+ }
}
static void
-bigreq_decode_reply (
- FD fd,
- const unsigned char *buf,
- short RequestMinor)
+bigreq_decode_reply(FD fd, const unsigned char *buf, short RequestMinor)
{
switch (RequestMinor) {
- case 0: BigreqEnableReply (fd, buf); break;
+ case 0:
+ BigreqEnableReply(fd, buf);
+ break;
}
}
void
-InitializeBIGREQ(
- const unsigned char *buf)
+InitializeBIGREQ(const unsigned char *buf)
{
- TYPE p;
+ TYPE p;
- BIGREQRequest = (unsigned char)(buf[9]);
+ BIGREQRequest = (unsigned char) (buf[9]);
- DefineEValue (&TD[REQUEST], (unsigned long) BIGREQRequest, "BigreqRequest");
- DefineEValue (&TD[REPLY], (unsigned long) BIGREQRequest, "BigreqReply");
+ DefineEValue(&TD[REQUEST], (unsigned long) BIGREQRequest, "BigreqRequest");
+ DefineEValue(&TD[REPLY], (unsigned long) BIGREQRequest, "BigreqReply");
- p = DefineType(BIGREQREQUEST, ENUMERATED, "BIGREQREQUEST", (PrintProcType) PrintENUMERATED);
- DefineEValue(p, 0L, "BigreqEnable");
+ p = DefineType(BIGREQREQUEST, ENUMERATED, "BIGREQREQUEST",
+ (PrintProcType) PrintENUMERATED);
+ DefineEValue(p, 0L, "BigreqEnable");
- p = DefineType(BIGREQREPLY, ENUMERATED, "BIGREQREPLY", (PrintProcType) PrintENUMERATED);
- DefineEValue (p, 0L, "BigreqEnable");
+ p = DefineType(BIGREQREPLY, ENUMERATED, "BIGREQREPLY",
+ (PrintProcType) PrintENUMERATED);
+ DefineEValue(p, 0L, "BigreqEnable");
- InitializeExtensionDecoder(BIGREQRequest, bigreq_decode_req,
- bigreq_decode_reply);
+ InitializeExtensionDecoder(BIGREQRequest, bigreq_decode_req,
+ bigreq_decode_reply);
}