svn commit: r223270 - head/lib/libprocstat

Jilles Tjoelker jilles at FreeBSD.org
Sat Jun 18 21:46:11 UTC 2011


Author: jilles
Date: Sat Jun 18 21:46:11 2011
New Revision: 223270
URL: http://svn.freebsd.org/changeset/base/223270

Log:
  libprocstat: Remove spaces between function name and open parenthesis.

Modified:
  head/lib/libprocstat/libprocstat.c

Modified: head/lib/libprocstat/libprocstat.c
==============================================================================
--- head/lib/libprocstat/libprocstat.c	Sat Jun 18 21:29:25 2011	(r223269)
+++ head/lib/libprocstat/libprocstat.c	Sat Jun 18 21:46:11 2011	(r223270)
@@ -271,11 +271,11 @@ procstat_freefiles(struct procstat *proc
 	}
 	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;
 	}
 }


More information about the svn-src-head mailing list