diff options
Diffstat (limited to 'src/XFreeLst.c')
-rw-r--r-- | src/XFreeLst.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/XFreeLst.c b/src/XFreeLst.c index 3966f3f..1805c30 100644 --- a/src/XFreeLst.c +++ b/src/XFreeLst.c @@ -62,12 +62,11 @@ SOFTWARE. * */ -XFreeDeviceList (list) +XFreeDeviceList(list) XDeviceList *list; - { - if (list != NULL) - { - XFree ((list->name) - sizeof(XDeviceList)); - XFree ((XDeviceList *) list); - } +{ + if (list != NULL) { + XFree((list->name) - sizeof(XDeviceList)); + XFree((XDeviceList *) list); } +} |