diff options
Diffstat (limited to 'wsutil/cpu_info.c')
-rw-r--r-- | wsutil/cpu_info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wsutil/cpu_info.c b/wsutil/cpu_info.c index 8b06b070..7c31a3bd 100644 --- a/wsutil/cpu_info.c +++ b/wsutil/cpu_info.c @@ -36,7 +36,7 @@ * model strings. */ static int -compare_model_names(gconstpointer a, gconstpointer b, void * user_data _U_) +compare_model_names(const void *a, const void *b, void * user_data _U_) { return strcmp((const char *)a, (const char *)b); } |