From b11384a6942cdf3c6b6f55e0dcc0a438eff7158a Mon Sep 17 00:00:00 2001 From: NRK Date: Wed, 19 Oct 2022 14:46:22 +0200 Subject: code-style: misc changes (#374) * ensure static variables comes after non-static ones * remove depreciated DATA32 type * prefer `sizeof(expression)` over `sizeof(Type)`. * silence a -Wsign warning * {gif,webp} loader: use a pointer to reduce code-noise * gif loader: allocate in one place Reviewed-on: https://codeberg.org/nsxiv/nsxiv/pulls/374 Reviewed-by: TAAPArthur --- thumbs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'thumbs.c') diff --git a/thumbs.c b/thumbs.c index 40a3d93..c9e97c4 100644 --- a/thumbs.c +++ b/thumbs.c @@ -145,7 +145,7 @@ void tns_init(tns_t *tns, fileinfo_t *tns_files, const int *cnt, int *sel, win_t const char *homedir, *dsuffix = ""; if (cnt != NULL && *cnt > 0) - tns->thumbs = ecalloc(*cnt, sizeof(thumb_t)); + tns->thumbs = ecalloc(*cnt, sizeof(*tns->thumbs)); else tns->thumbs = NULL; tns->files = tns_files; -- cgit v1.2.3