summaryrefslogtreecommitdiff
path: root/src/gc.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2013-07-30 21:57:04 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2013-07-31 21:59:16 -0700
commitea349d3c406695665322c71caf5ea3c970cb3155 (patch)
tree73e1ea9553cae88cfe2748cd6d2681d147254851 /src/gc.c
parentabb8b6198b639359f34ab6f0ab97039016d8b6db (diff)
Use (void) to declare functions that take no arguments, instead of ()
It's time for C89. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: <wharms@bfs.de>
Diffstat (limited to 'src/gc.c')
-rw-r--r--src/gc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gc.c b/src/gc.c
index a1cb613..11aca71 100644
--- a/src/gc.c
+++ b/src/gc.c
@@ -69,7 +69,7 @@ in this Software without prior written authorization from The Open Group.
* want to do this once, hence the first_time flag.
*/
void
-CreateGCs()
+CreateGCs(void)
{
static ScreenInfo *prevScr = NULL;
XGCValues gcv;