# HG changeset patch # User Matti Hamalainen # Date 1578608219 -7200 # Node ID 07b5f729252f75b3fc3fe562c2b1c754e927fde7 # Parent f1df1cf69a3849259179147dc0769b562c3f1a0f Fix a format string. diff -r f1df1cf69a38 -r 07b5f729252f main.c --- a/main.c Mon Jan 06 12:40:57 2020 +0200 +++ b/main.c Fri Jan 10 00:16:59 2020 +0200 @@ -1042,7 +1042,8 @@ // Just list whomever is in ignore now th_llist_t *user = *list; size_t nuser = th_llist_length(*list); - char *result = th_strdup_printf("Users on %s list (%d): ", listname, nuser); + char *result = th_strdup_printf("Users on %s list (%" PRIu_SIZE_T "): ", + listname, nuser); while (user != NULL) { if (user->data != NULL)