Skip to content

Commit

Permalink
fix: [tag]New tag v5.5.13
Browse files Browse the repository at this point in the history
Fix build issue on arm64 and loong64, update new tag 5.5.13

Log: New tag v5.5.13
  • Loading branch information
re2zero committed Jan 17, 2025
1 parent 24260b1 commit c3f8d9e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
5 changes: 1 addition & 4 deletions 3rdparty/fsearch/array.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include <string.h>
#include <sys/param.h>
#include <assert.h>
#include <stdlib.h>
#include "array.h"
#include "btree.h"

Expand Down Expand Up @@ -159,9 +160,5 @@ darray_sort (DynamicArray *array, int (*comp_func)(const void *, const void *))
assert (array->data != NULL);
assert (comp_func != NULL);

#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
qsort (array->data, array->num_items, sizeof (void *), comp_func);
#else
std::sort(array->data, array->data + array->num_items, comp_func);
#endif
}
7 changes: 7 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
dde-grand-search (5.5.13) unstable; urgency=medium

* update dde-grand-search V25 5.5.13 baseline version
* fix issue about launch app and CI build.

-- re2zero <[email protected]> Fri, 17 Jan 2025 14:45:45 +0800

dde-grand-search (5.5.12) unstable; urgency=medium

* update dde-grand-search V25 5.5.12 baseline version
Expand Down

0 comments on commit c3f8d9e

Please sign in to comment.