From 2be3ebd91868436abcbbd581b3e661cdd6f95559 Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Mon, 5 Aug 2019 15:25:15 +0100 Subject: content: Rename content_broadcast_errorcode() Signed-off-by: Daniel Silverstone --- content/handlers/image/ico.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'content/handlers/image/ico.c') diff --git a/content/handlers/image/ico.c b/content/handlers/image/ico.c index 467533376..1f320636b 100644 --- a/content/handlers/image/ico.c +++ b/content/handlers/image/ico.c @@ -75,7 +75,7 @@ static nserror nsico_create_ico_data(nsico_content *c) c->ico = calloc(sizeof(ico_collection), 1); if (c->ico == NULL) { - content_broadcast_errorcode(&c->base, NSERROR_NOMEM); + content_broadcast_error(&c->base, NSERROR_NOMEM, NULL); return NSERROR_NOMEM; } ico_collection_create(c->ico, &bmp_bitmap_callbacks); @@ -134,11 +134,11 @@ static bool nsico_convert(struct content *c) case BMP_OK: break; case BMP_INSUFFICIENT_MEMORY: - content_broadcast_errorcode(c, NSERROR_NOMEM); + content_broadcast_error(c, NSERROR_NOMEM, NULL); return false; case BMP_INSUFFICIENT_DATA: case BMP_DATA_ERROR: - content_broadcast_errorcode(c, NSERROR_ICO_ERROR); + content_broadcast_error(c, NSERROR_ICO_ERROR, NULL); return false; } -- cgit v1.2.3