summaryrefslogtreecommitdiff
path: root/src/twm.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/twm.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/twm.c')
-rw-r--r--src/twm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/twm.c b/src/twm.c
index 5d8cab3..7a30aad 100644
--- a/src/twm.c
+++ b/src/twm.c
@@ -683,7 +683,7 @@ main(int argc, char *argv[])
* initialize twm variables
*/
void
-InitVariables()
+InitVariables(void)
{
FreeList(&Scr->BorderColorL);
FreeList(&Scr->IconBorderColorL);
@@ -832,7 +832,7 @@ InitVariables()
}
void
-CreateFonts ()
+CreateFonts (void)
{
GetFont(&Scr->TitleBarFont);
GetFont(&Scr->MenuFont);