From ed4325d510a0deff9110a69f0a1dc6675073a12c Mon Sep 17 00:00:00 2001 From: Chidambar Zinnoury Date: Mon, 30 Jul 2012 20:30:26 +0000 Subject: [PATCH] e utils: don't store signed integers in unsigned arrays. This will make file previews use better sized icons. SVN revision: 74598 --- src/bin/e_utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_utils.c b/src/bin/e_utils.c index d63f2c40b..53b5a7394 100644 --- a/src/bin/e_utils.c +++ b/src/bin/e_utils.c @@ -520,7 +520,7 @@ e_util_icon_size_normalize(unsigned int desired) { const unsigned int *itr, known_sizes[] = { - 16, 22, 24, 32, 36, 48, 64, 72, 96, 128, 192, 256, -1 + 16, 22, 24, 32, 36, 48, 64, 72, 96, 128, 192, 256, 0 }; for (itr = known_sizes; *itr > 0; itr++)