summaryrefslogtreecommitdiff
path: root/dix
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2013-12-29 15:18:28 -0800
committerKeith Packard <keithp@keithp.com>2014-01-12 10:24:12 -0800
commit2d2d49dab5c5718989de97d7227aac793479745e (patch)
tree49ce4f514dcbc15b8ba0e0016de1326d6271474c /dix
parent60014a4a98ff924ae7f6840781f768c1cc93bbab (diff)
Clean up a few function prototypes to not place formals in /**/
This just removes the comment markers from around the formals in several function prototypes near where pointer -> void * changes were made. There are plenty more of these to fix. Signed-off-by: Keith Packard <keithp@keithp.com> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'dix')
-rw-r--r--dix/dixutils.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/dix/dixutils.c b/dix/dixutils.c
index 220040fa4..5de74c8b4 100644
--- a/dix/dixutils.c
+++ b/dix/dixutils.c
@@ -556,8 +556,7 @@ ProcessWorkQueueZombies(void)
}
Bool
-QueueWorkProc(Bool (*function)
- (ClientPtr /* pClient */ , void */* closure */ ),
+QueueWorkProc(Bool (*function) (ClientPtr pClient, void *closure),
ClientPtr client, void *closure)
{
WorkQueuePtr q;