summaryrefslogtreecommitdiffstats
path: root/sbin/restore
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2002-08-21 18:52:32 +0000
committerimp <imp@FreeBSD.org>2002-08-21 18:52:32 +0000
commit398442e99cb13b443e612970ec49092016d0d432 (patch)
treeb96dad2024954a7be3963ee22ae1798523675541 /sbin/restore
parent136be46680c6e4a18cc827da991d4f9a0de29cba (diff)
downloadFreeBSD-src-398442e99cb13b443e612970ec49092016d0d432.zip
FreeBSD-src-398442e99cb13b443e612970ec49092016d0d432.tar.gz
Use '0' instead of NULL when we mean the integer constant 0 and not a
"null pointer expression".
Diffstat (limited to 'sbin/restore')
-rw-r--r--sbin/restore/restore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/restore/restore.c b/sbin/restore/restore.c
index 08b932f..96f6c2d 100644
--- a/sbin/restore/restore.c
+++ b/sbin/restore/restore.c
@@ -458,7 +458,7 @@ nodeupdates(char *name, ino_t ino, int type)
* for it, we discard the name knowing that it will be on the
* next incremental tape.
*/
- case NULL:
+ case 0:
fprintf(stderr, "%s: (inode %d) not found on tape\n",
name, ino);
break;
OpenPOWER on IntegriCloud