Fix comments for pointers in parameter lists to work with fussy compilers
This commit is contained in:
parent
e50ab8fead
commit
6700847458
|
@ -366,7 +366,7 @@ extern int DoGetImage(
|
||||||
int /*width*/,
|
int /*width*/,
|
||||||
int /*height*/,
|
int /*height*/,
|
||||||
Mask /*planemask*/,
|
Mask /*planemask*/,
|
||||||
xGetImageReply **/*im_return*/);
|
xGetImageReply ** /*im_return*/);
|
||||||
|
|
||||||
#ifdef LBX
|
#ifdef LBX
|
||||||
extern void IncrementClientCount(void);
|
extern void IncrementClientCount(void);
|
||||||
|
|
|
@ -217,9 +217,9 @@ Bool defeatAccessControl = FALSE;
|
||||||
(length) == (host)->len &&\
|
(length) == (host)->len &&\
|
||||||
!acmp (address, (host)->addr, length))
|
!acmp (address, (host)->addr, length))
|
||||||
|
|
||||||
static int ConvertAddr(struct sockaddr */*saddr*/,
|
static int ConvertAddr(struct sockaddr * /*saddr*/,
|
||||||
int */*len*/,
|
int * /*len*/,
|
||||||
pointer */*addr*/);
|
pointer * /*addr*/);
|
||||||
|
|
||||||
static int CheckAddr(int /*family*/,
|
static int CheckAddr(int /*family*/,
|
||||||
pointer /*pAddr*/,
|
pointer /*pAddr*/,
|
||||||
|
|
|
@ -791,7 +791,7 @@ static ClientPtr
|
||||||
AllocNewConnection (XtransConnInfo trans_conn, int fd, CARD32 conn_time,
|
AllocNewConnection (XtransConnInfo trans_conn, int fd, CARD32 conn_time,
|
||||||
int (*Flush)(
|
int (*Flush)(
|
||||||
ClientPtr /*who*/, OsCommPtr /*oc*/,
|
ClientPtr /*who*/, OsCommPtr /*oc*/,
|
||||||
char */*extraBuf*/, int /*extraCount*/),
|
char * /*extraBuf*/, int /*extraCount*/),
|
||||||
void (*Close)(
|
void (*Close)(
|
||||||
ClientPtr /*client*/),
|
ClientPtr /*client*/),
|
||||||
LbxProxyPtr proxy)
|
LbxProxyPtr proxy)
|
||||||
|
|
|
@ -216,7 +216,7 @@ extern int StandardFlushClient(
|
||||||
int /*extraCount*/
|
int /*extraCount*/
|
||||||
);
|
);
|
||||||
extern int LbxFlushClient(ClientPtr /*who*/, OsCommPtr /*oc*/,
|
extern int LbxFlushClient(ClientPtr /*who*/, OsCommPtr /*oc*/,
|
||||||
char */*extraBuf*/, int /*extraCount*/);
|
char * /*extraBuf*/, int /*extraCount*/);
|
||||||
#else
|
#else
|
||||||
extern int FlushClient(
|
extern int FlushClient(
|
||||||
ClientPtr /*who*/,
|
ClientPtr /*who*/,
|
||||||
|
|
Loading…
Reference in New Issue