From 70701186d3a86082c84bab15caf3a0210fb76fc8 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Fri, 21 Nov 2025 13:48:43 -0600 Subject: [PATCH] fs_stat.hpp --- src/fs_stat.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/fs_stat.hpp b/src/fs_stat.hpp index 0ae3a1c9..412331c1 100644 --- a/src/fs_stat.hpp +++ b/src/fs_stat.hpp @@ -59,7 +59,6 @@ namespace fs switch(follow_) { - default: case FollowSymlinksEnum::NEVER: rv = fs::lstat(path_,st_); return rv; @@ -98,7 +97,7 @@ namespace fs return rv; } - DIE("Should never reach this"); + DIE("Should never reach this: "); return -EINVAL; } }