diff options
author | Heiko Schlittermann (HS12-RIPE) <hs@schlittermann.de> | 2016-03-02 17:25:01 +0100 |
---|---|---|
committer | Heiko Schlittermann (HS12-RIPE) <hs@schlittermann.de> | 2016-03-02 17:25:01 +0100 |
commit | 35a5627dc1afa9c40adc64d215821750d4932a52 (patch) | |
tree | 78872960e10423f0f3770696938730bfaea9913c | |
parent | de5ba17561e686e5a05c9cc88288c82b563987de (diff) |
Use right type casts in string_compare_by_pointerexim-4_87_RC5
-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 */ |