makefs: Remove dead code in inode_type()

No functional change intended.

MFC after:	1 week

(cherry picked from commit 2be86b6cc168615e19350710347b77616c4b7f19)
This commit is contained in:
Mark Johnston 2025-01-07 14:30:53 +00:00
parent ad3a4bbf4e
commit e59fdfbf25

View file

@ -605,8 +605,6 @@ inode_type(mode_t mode)
return ("symlink");
if (S_ISDIR(mode))
return ("dir");
if (S_ISLNK(mode))
return ("link");
if (S_ISFIFO(mode))
return ("fifo");
if (S_ISSOCK(mode))