summaryrefslogtreecommitdiff
path: root/usr/src/cmd/backup/restore/restore.c
diff options
context:
space:
mode:
authorToomas Soome <tsoome@me.com>2017-07-16 01:15:17 +0300
committerHans Rosenfeld <hans.rosenfeld@joyent.com>2018-04-23 18:15:40 +0200
commitc0882bf482806dc6459d8b317ff54b69d1602bf0 (patch)
treef59c7af73b3ddc48359df4bb5193bbddd79a8d48 /usr/src/cmd/backup/restore/restore.c
parent2ae4c13b79c29604a25f0cedb59f2acff223bd26 (diff)
downloadillumos-joyent-c0882bf482806dc6459d8b317ff54b69d1602bf0.tar.gz
9402 restore: this statement may fall through
Reviewed by: Andy Fiddaman <omnios@citrus-it.co.uk> Reviewed by: C Fraire <cfraire@me.com> Approved by: Hans Rosenfeld <rosenfeld@grumpf.hope-2000.org>
Diffstat (limited to 'usr/src/cmd/backup/restore/restore.c')
-rw-r--r--usr/src/cmd/backup/restore/restore.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/usr/src/cmd/backup/restore/restore.c b/usr/src/cmd/backup/restore/restore.c
index 2a0b67dfd4..f10603e549 100644
--- a/usr/src/cmd/backup/restore/restore.c
+++ b/usr/src/cmd/backup/restore/restore.c
@@ -12,8 +12,6 @@
* specifies the terms and conditions for redistribution.
*/
-#pragma ident "%Z%%M% %I% %E% SMI"
-
#include "restore.h"
/* undef MAXNAMLEN to prevent compiler warnings about redef in dirent.h */
#undef MAXNAMLEN
@@ -487,7 +485,7 @@ nodeupdates(name, ino, type)
(void) fprintf(stderr, "[%s] %s: %s\n",
keyval(key), name, gettext("inconsistent state"));
done(1);
- /*NOTREACHED*/
+ /* NOTREACHED */
/*
* These states "cannot" arise for any state of the symbol table.
@@ -498,7 +496,7 @@ nodeupdates(name, ino, type)
(void) fprintf(stderr, "[%s] %s: %s\n",
keyval(key), name, gettext("impossible state"));
done(1);
- /*NOTREACHED*/
+ /* NOTREACHED */
}
return (descend);
}