Pedantic style fixes

svn path=/trunk/netsurf/; revision=12999
This commit is contained in:
John Mark Bell 2011-10-08 00:18:16 +00:00
parent ac5d2a904c
commit 1e828006aa
1 changed files with 4 additions and 2 deletions

View File

@ -153,9 +153,10 @@ static bool nsico_redraw(struct content *c, struct content_redraw_data *data,
struct bmp_image *bmp = ico_find(ico->ico, data->width, data->height);
bitmap_flags_t flags = BITMAPF_NONE;
if (!bmp->decoded)
if (bmp->decoded == false) {
if (bmp_decode(bmp) != BMP_OK)
return false;
}
ico->bitmap = bmp->bitmap;
@ -219,9 +220,10 @@ static void *nsico_get_internal(const struct content *c, void *context)
* Currently assumes it's for a URL bar. */
struct bmp_image *bmp = ico_find(ico->ico, 16, 16);
if (!bmp->decoded)
if (bmp->decoded == false) {
if (bmp_decode(bmp) != BMP_OK)
return NULL;
}
ico->bitmap = bmp->bitmap;