diff options
author | 2021-04-28 23:09:00 -0400 | |
---|---|---|
committer | 2021-04-28 23:09:00 -0400 | |
commit | 0064057741bc0314b7377a47b096d0eae674a44b (patch) | |
tree | b40836e058d8a2f968668993cb772ff9318c33b4 /src/lib/formats/fsmgr.cpp | |
parent | e229977b964ef69a7c6c656df453ccaf0a045f19 (diff) |
fsmgr: more compiler error fighting [R. Belmont]
Diffstat (limited to 'src/lib/formats/fsmgr.cpp')
-rw-r--r-- | src/lib/formats/fsmgr.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/formats/fsmgr.cpp b/src/lib/formats/fsmgr.cpp index 627b4865b9c..048007730ce 100644 --- a/src/lib/formats/fsmgr.cpp +++ b/src/lib/formats/fsmgr.cpp @@ -207,6 +207,7 @@ const char *fs_meta_get_name(fs_meta_name name) case fs_meta_name::name: return "name"; case fs_meta_name::size_in_blocks: return "size_in_blocks"; } + return ""; } std::string fs_meta_to_string(fs_meta_type type, const fs_meta &m) |