Skip to content

Commit 2493dae

Browse files
committed
Updates requested in the PR.
1 parent 7548fb1 commit 2493dae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/file_util.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ std::string fileutl_parse_extension_in_pathname(const std::string &pathname)
210210
const std::size_t slash_idx=
211211
fwd_slash_idx==std::string::npos ? bwd_slash_idx :
212212
bwd_slash_idx==std::string::npos ? fwd_slash_idx :
213-
std::max(fwd_slash_idx, bwd_slash_idx);
213+
std::max(fwd_slash_idx, bwd_slash_idx);
214214
# elif defined(__linux__) || defined(__APPLE__)
215215
const std::size_t slash_idx=pathname.find_last_of('/');
216216
# else

0 commit comments

Comments
 (0)