diff options
author | jilles <jilles@FreeBSD.org> | 2011-06-18 21:46:11 +0000 |
---|---|---|
committer | jilles <jilles@FreeBSD.org> | 2011-06-18 21:46:11 +0000 |
commit | fe5611be569005f5729498cc32cce3f64cc1020e (patch) | |
tree | b247da42b343a17f524dbdea071b036f8a0d0da6 /lib | |
parent | 73191046d378fbbe794ef2df066a9449de5db18e (diff) | |
download | FreeBSD-src-fe5611be569005f5729498cc32cce3f64cc1020e.zip FreeBSD-src-fe5611be569005f5729498cc32cce3f64cc1020e.tar.gz |
libprocstat: Remove spaces between function name and open parenthesis.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libprocstat/libprocstat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libprocstat/libprocstat.c b/lib/libprocstat/libprocstat.c index 7ddc560..f8e5516 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; } } |