From e22b971a123e46f18189aaef9d3584a670c32cd7 Mon Sep 17 00:00:00 2001 From: falkTX Date: Tue, 28 Jun 2022 13:26:39 +0100 Subject: [PATCH] Fix a typo Signed-off-by: falkTX --- distrho/extra/FileBrowserDialogImpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distrho/extra/FileBrowserDialogImpl.cpp b/distrho/extra/FileBrowserDialogImpl.cpp index 657bf326..587de38a 100644 --- 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