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/bmp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'content/handlers/image/bmp.c') diff --git a/content/handlers/image/bmp.c b/content/handlers/image/bmp.c index 75d8880f3..448728ede 100644 --- a/content/handlers/image/bmp.c +++ b/content/handlers/image/bmp.c @@ -78,7 +78,7 @@ static nserror nsbmp_create_bmp_data(nsbmp_content *bmp) bmp->bmp = calloc(sizeof(struct bmp_image), 1); if (bmp->bmp == NULL) { - content_broadcast_errorcode(&bmp->base, NSERROR_NOMEM); + content_broadcast_error(&bmp->base, NSERROR_NOMEM, NULL); return NSERROR_NOMEM; } @@ -135,11 +135,11 @@ static bool nsbmp_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_BMP_ERROR); + content_broadcast_error(c, NSERROR_BMP_ERROR, NULL); return false; } -- cgit v1.2.3