diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-16 14:46:59 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-03-16 14:56:22 +0900 |
| commit | 76c67c49ce863d214f4a365b443663597e4f6ff9 (patch) | |
| tree | 7beed17146d738067d789bc12f7603249f4f8e73 /src/svnqt/client_impl.cpp | |
| parent | 14c622e80a2f4e10689c9548f0b26e7b6e815cbf (diff) | |
| download | tdesvn-76c67c49ce863d214f4a365b443663597e4f6ff9.tar.gz tdesvn-76c67c49ce863d214f4a365b443663597e4f6ff9.zip | |
Replace TRUE/FALSE with boolean values true/false
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/svnqt/client_impl.cpp')
| -rw-r--r-- | src/svnqt/client_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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)) { |
