summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/sortlist_type.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sortlist_type.h b/src/sortlist_type.h
index 6e6d9c7fa..46dcc0839 100644
--- a/src/sortlist_type.h
+++ b/src/sortlist_type.h
@@ -205,6 +205,7 @@ public:
const bool desc = HASBITS(this->flags, VL_DESC);
if (HASBITS(this->flags, VL_FIRST_SORT)) {
+ CLRBITS(this->flags, VL_FIRST_SORT);
qsort(this->data, this->items, sizeof(T), (int (CDECL *)(const void *, const void *))compare);
if (desc) this->Reverse();