From 76c67c49ce863d214f4a365b443663597e4f6ff9 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 16 Mar 2025 14:46:59 +0900 Subject: Replace TRUE/FALSE with boolean values true/false Signed-off-by: Michele Calgaro --- src/svnqt/client_impl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/svnqt/client_impl.cpp') diff --git a/src/svnqt/client_impl.cpp b/src/svnqt/client_impl.cpp index 431ca63..ced414c 100644 --- a/src/svnqt/client_impl.cpp +++ b/src/svnqt/client_impl.cpp @@ -52,7 +52,7 @@ apr_array_header_t* svn_sort__hash(apr_hash_t *ht, ary = apr_array_make(pool, apr_hash_count(ht), sizeof(svn_sort_item_type)); /* loop over hash table and push all keys into the array */ - sorted = TRUE; + sorted = true; prev_item = NULL; for (hi = apr_hash_first(pool, ht); hi; hi = apr_hash_next(hi)) { -- cgit v1.2.3