diff options
author | phk <phk@FreeBSD.org> | 2000-12-18 21:14:25 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2000-12-18 21:14:25 +0000 |
commit | c5b98ef61d504239bd2e1470af7539364f3e0e53 (patch) | |
tree | 3045054d3eb424359904708f7229ad07f762290f | |
parent | 11d91a4b9e3e3d87b288a36480f6b3c345134e45 (diff) | |
download | FreeBSD-src-c5b98ef61d504239bd2e1470af7539364f3e0e53.zip FreeBSD-src-c5b98ef61d504239bd2e1470af7539364f3e0e53.tar.gz |
Add a missing period and newline to a message.
PR: 23334
Submitted by: Rich Morin <rdm@cfcl.com>
-rw-r--r-- | sbin/fsck_ffs/utilities.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/fsck_ffs/utilities.c b/sbin/fsck_ffs/utilities.c index aee31f0..81b96e6 100644 --- a/sbin/fsck_ffs/utilities.c +++ b/sbin/fsck_ffs/utilities.c @@ -87,7 +87,8 @@ retry: /* remove trailing slash */ origname[len] = '\0'; if ((fsinfo = getfsfile(origname)) == NULL) { - printf("Can't resolve %s to character special device", + printf( + "Can't resolve %s to character special device.\n", origname); return (0); } |