svn commit: r246907 - head/sys/kern

Pawel Jakub Dawidek pjd at FreeBSD.org
Sun Feb 17 11:48:17 UTC 2013


Author: pjd
Date: Sun Feb 17 11:48:16 2013
New Revision: 246907
URL: http://svnweb.freebsd.org/changeset/base/246907

Log:
  Remove redundant space.

Modified:
  head/sys/kern/sys_pipe.c

Modified: head/sys/kern/sys_pipe.c
==============================================================================
--- head/sys/kern/sys_pipe.c	Sun Feb 17 11:47:58 2013	(r246906)
+++ head/sys/kern/sys_pipe.c	Sun Feb 17 11:48:16 2013	(r246907)
@@ -473,7 +473,7 @@ sys_pipe(struct thread *td, struct pipe_
 	error = kern_pipe(td, fildes);
 	if (error)
 		return (error);
-	
+
 	td->td_retval[0] = fildes[0];
 	td->td_retval[1] = fildes[1];
 


More information about the svn-src-all mailing list