diff options
author | Olaf Faaland <[email protected]> | 2017-10-04 12:33:43 -0400 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2017-10-09 14:27:27 -0700 |
commit | 4b393c50ae0e74b351534030d8b87f1967832d09 (patch) | |
tree | 620e43913e024cee1fac37509a3512dcb30e91d9 /cmd | |
parent | e8474f9ad3b3d23c3277535c4f53f8fd1e6cbd74 (diff) |
Make file headers conform to ZFS style standard
No semantic changes.
Change
/************\
and
\************/
to
/*
and
*/
Signed-off-by: Olaf Faaland <[email protected]>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/splat/splat.c | 4 | ||||
-rw-r--r-- | cmd/splat/splat.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/cmd/splat/splat.c b/cmd/splat/splat.c index 92962393d..d11a64ce8 100644 --- a/cmd/splat/splat.c +++ b/cmd/splat/splat.c @@ -1,4 +1,4 @@ -/*****************************************************************************\ +/* * Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC. * Copyright (C) 2007 The Regents of the University of California. * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER). @@ -22,7 +22,7 @@ * with the SPL. If not, see <http://www.gnu.org/licenses/>. ***************************************************************************** * Solaris Porting LAyer Tests (SPLAT) User Space Interface. -\*****************************************************************************/ + */ #include <stdlib.h> #include <stddef.h> diff --git a/cmd/splat/splat.h b/cmd/splat/splat.h index 5b838af3a..8fbc97cb6 100644 --- a/cmd/splat/splat.h +++ b/cmd/splat/splat.h @@ -1,4 +1,4 @@ -/*****************************************************************************\ +/* * Copyright (C) 2007-2010 Lawrence Livermore National Security, LLC. * Copyright (C) 2007 The Regents of the University of California. * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER). @@ -20,7 +20,7 @@ * * You should have received a copy of the GNU General Public License along * with the SPL. If not, see <http://www.gnu.org/licenses/>. -\*****************************************************************************/ + */ #ifndef _SPLAT_H #define _SPLAT_H |