diff options
-rw-r--r-- | src/src/string.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/src/string.c b/src/src/string.c index be5a8deda..e0e0fa5ae 100644 --- a/src/src/string.c +++ b/src/src/string.c @@ -1715,7 +1715,7 @@ pointers. Here it is. */ int string_compare_by_pointer(const void *a, const void *b) { -return Ustrcmp(CUSS *(const char**) a, CUSS *(const char**) b); +return Ustrcmp(* CUSS a, * CUSS b); } #endif /* COMPILE_UTILITY */ |