diff options
author | trhodes <trhodes@FreeBSD.org> | 2002-08-31 21:34:54 +0000 |
---|---|---|
committer | trhodes <trhodes@FreeBSD.org> | 2002-08-31 21:34:54 +0000 |
commit | 2d54012414aadf02573480a51c963f1ba187edd3 (patch) | |
tree | 52249fe188ff33d0ce926ac647ff83fa5926d3fd | |
parent | 1703af0c56813289ea298b2b5a59770581a1f8ae (diff) | |
download | FreeBSD-src-2d54012414aadf02573480a51c963f1ba187edd3.zip FreeBSD-src-2d54012414aadf02573480a51c963f1ba187edd3.tar.gz |
use 'file system superblock' for the error message. This will match other
disk utilities.
Discussed with: bde
-rw-r--r-- | sbin/clri/clri.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/clri/clri.c b/sbin/clri/clri.c index e145d17..143e301 100644 --- a/sbin/clri/clri.c +++ b/sbin/clri/clri.c @@ -108,7 +108,7 @@ main(int argc, char *argv[]) break; } if (sblock_try[i] == -1) { - fprintf(stderr, "Cannot find special_device\n"); + fprintf(stderr, "Cannot find file system superblock\n"); exit(2); } bsize = sbp->fs_bsize; |