From fe5611be569005f5729498cc32cce3f64cc1020e Mon Sep 17 00:00:00 2001 From: jilles Date: Sat, 18 Jun 2011 21:46:11 +0000 Subject: [PATCH] libprocstat: Remove spaces between function name and open parenthesis. --- lib/libprocstat/libprocstat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libprocstat/libprocstat.c b/lib/libprocstat/libprocstat.c index 7ddc5604f60e..f8e5516c6641 100644 --- a/lib/libprocstat/libprocstat.c +++ b/lib/libprocstat/libprocstat.c @@ -271,11 +271,11 @@ procstat_freefiles(struct procstat *procstat, struct filestat_list *head) } free(head); if (procstat->vmentries != NULL) { - free (procstat->vmentries); + free(procstat->vmentries); procstat->vmentries = NULL; } if (procstat->files != NULL) { - free (procstat->files); + free(procstat->files); procstat->files = NULL; } }