summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKim Woelders <kim@woelders.dk>2021-12-20 08:05:18 +0100
committerKim Woelders <kim@woelders.dk>2021-12-21 06:05:18 +0100
commit82bbd0a278ff5fa2fcf7c5f29875b5ea29bb9ea9 (patch)
tree7eaa4ea8a9e5d74017997c5c4e2d5f955faa964f
parent6ce28a9380ee0acb36c31f09fa4c58e9115016e0 (diff)
downloadimlib2-82bbd0a278ff5fa2fcf7c5f29875b5ea29bb9ea9.tar.gz
Indent
-rw-r--r--src/modules/loaders/loader_ico.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/loaders/loader_ico.c b/src/modules/loaders/loader_ico.c
index cdb209e..0cc1b82 100644
--- a/src/modules/loaders/loader_ico.c
+++ b/src/modules/loaders/loader_ico.c
@@ -134,7 +134,7 @@ ico_read_idir(ico_t * ico, int ino)
SWAP_LE_32_INPLACE(ie->ide.offs);
DL("Entry %2d: Idir: WxHxD = %dx%dx%d, colors = %d\n",
- ino, ie->w, ie->h, ie->ide.bpp, ie->ide.colors);
+ ino, ie->w, ie->h, ie->ide.bpp, ie->ide.colors);
}
static void
@@ -170,7 +170,7 @@ ico_read_icon(ico_t * ico, int ino)
}
DL("Entry %2d: Icon: WxHxD = %dx%dx%d, colors = %d\n",
- ino, ie->w, ie->h, ie->bih.bpp, ie->bih.colors);
+ ino, ie->w, ie->h, ie->bih.bpp, ie->bih.colors);
if (ie->bih.width != ie->w || ie->bih.height != 2 * ie->h)
{