diff --git a/mx_util.c b/mx_util.c
index 8818570..824a08c 100644
--- a/mx_util.c
+++ b/mx_util.c
@@ -931,7 +931,7 @@ char **mx_strvec_new(void)
 {
     char **strvec;
 
-    strvec = calloc(sizeof(*strvec), 1);
+    strvec = calloc(1, sizeof(*strvec));
     if (!strvec)
         return NULL;