Fix comments for pointers in parameter lists to work with fussy compilers

This commit is contained in:
Harold L Hunt II 2005-05-02 22:01:08 +00:00
parent e50ab8fead
commit 6700847458
4 changed files with 6 additions and 6 deletions

View File

@ -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);

View File

@ -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*/,

View File

@ -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)

View File

@ -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*/,