From a509b8bec478010cc348467aa74136a7dae1108c Mon Sep 17 00:00:00 2001 From: Anastasia Klimchuk Date: Sat, 10 Dec 2022 19:38:52 +1100 Subject: layout: Add new line to out of memory error message Change-Id: I1f5134378b7967931d52ee0556e2061c9a30d27f Signed-off-by: Anastasia Klimchuk Reviewed-on: https://review.coreboot.org/c/flashrom/+/70552 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan --- layout.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'layout.c') diff --git a/layout.c b/layout.c index 350e49eca..3f2abb9a3 100644 --- a/layout.c +++ b/layout.c @@ -135,13 +135,13 @@ static bool parse_include_args(const char *arg, char **name, char **file) if (colon) { tmp_name = strndup(arg, colon - arg); if (!tmp_name) { - msg_gerr("Out of memory"); + msg_gerr("Out of memory\n"); goto error; } tmp_file = strdup(colon + 1); if (!tmp_file) { - msg_gerr("Out of memory"); + msg_gerr("Out of memory\n"); goto error; } } else { @@ -178,7 +178,7 @@ int register_include_arg(struct layout_include_args **args, const char *arg) tmp = malloc(sizeof(*tmp)); if (tmp == NULL) { - msg_gerr("Out of memory"); + msg_gerr("Out of memory\n"); goto error; } -- cgit v1.2.3