utils_curl_stats.c: fix order of calloc arguments
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Sat, 23 Jul 2016 13:23:03 +0000 (15:23 +0200)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Sat, 23 Jul 2016 13:23:03 +0000 (15:23 +0200)
src/utils_curl_stats.c

index ff2eb64..258c5cf 100644 (file)
@@ -164,7 +164,7 @@ curl_stats_t *curl_stats_from_config (oconfig_item_t *ci)
        if (ci == NULL)
                return NULL;
 
-       s = calloc (sizeof (*s), 1);
+       s = calloc (1, sizeof (*s));
        if (s == NULL)
                return NULL;