commit e22b971a123e46f18189aaef9d3584a670c32cd7 parent db893e72df9932005f1c40a55691d7ae13952a56 Author: falkTX <falktx@falktx.com> Date: Tue, 28 Jun 2022 13:26:12 +0100 Fix a typo Signed-off-by: falkTX <falktx@falktx.com> Diffstat:
M | distrho/extra/FileBrowserDialogImpl.cpp | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/distrho/extra/FileBrowserDialogImpl.cpp b/distrho/extra/FileBrowserDialogImpl.cpp @@ -62,7 +62,7 @@ static const char* const kSelectedFileCancelled = "__dpf_cancelled__"; #ifdef HAVE_DBUS static constexpr bool isHexChar(const char c) noexcept { - return c >= '0' && c <= 'f' && (c < '9' || (c >= 'A' && c <= 'F') || c >= 'a'); + return c >= '0' && c <= 'f' && (c <= '9' || (c >= 'A' && c <= 'F') || c >= 'a'); } static constexpr int toHexChar(const char c) noexcept