summaryrefslogtreecommitdiff
path: root/hw/xfree86/parser/read.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw/xfree86/parser/read.c')
-rw-r--r--hw/xfree86/parser/read.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/hw/xfree86/parser/read.c b/hw/xfree86/parser/read.c
index 4e42b24f0..d4d525218 100644
--- a/hw/xfree86/parser/read.c
+++ b/hw/xfree86/parser/read.c
@@ -87,7 +87,7 @@ xf86validateConfig (XF86ConfigPtr p)
if (!xf86validateLayout (p))
return FALSE;
- return (TRUE);
+ return TRUE;
}
XF86ConfigPtr
@@ -113,7 +113,7 @@ xf86readConfigFile (void)
{
xf86parseError (QUOTE_MSG, "Section");
CLEANUP (ptr);
- return (NULL);
+ return NULL;
}
xf86setSection (val.str);
if (xf86nameCompare (val.str, "files") == 0)
@@ -232,11 +232,11 @@ xf86readConfigFile (void)
}
if (xf86validateConfig (ptr))
- return (ptr);
+ return ptr;
else
{
CLEANUP (ptr);
- return (NULL);
+ return NULL;
}
}
@@ -263,10 +263,10 @@ xf86addListItem (GenericListPtr head, GenericListPtr new)
if (last)
{
last->next = new;
- return (head);
+ return head;
}
else
- return (new);
+ return new;
}
/*