commit | 7310f19a07d70a16a0e6342ceb538854729282cd | [log] [tgz] |
---|---|---|
author | Anastasia Klimchuk <aklm@chromium.org> | Sat Dec 10 19:38:52 2022 +1100 |
committer | Nico Huber <nico.h@gmx.de> | Sun Jan 29 12:29:02 2023 +0000 |
tree | b27e68cc1c3664e152f812cfedc96f895522fe3c | |
parent | 9818b3faba2535bb99b658f72ee5e2d5c4fdbc41 [diff] |
layout: Add new line to out of memory error message Change-Id: I1f5134378b7967931d52ee0556e2061c9a30d27f Signed-off-by: Anastasia Klimchuk <aklm@chromium.org> Original-Reviewed-on: https://review.coreboot.org/c/flashrom/+/70552 Original-Reviewed-by: Edward O'Callaghan <quasisec@chromium.org> Reviewed-on: https://review.coreboot.org/c/flashrom-stable/+/72368 Reviewed-by: Nico Huber <nico.h@gmx.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
diff --git a/layout.c b/layout.c index 804e4fe..d645078 100644 --- a/layout.c +++ b/layout.c
@@ -119,7 +119,7 @@ tmp = malloc(sizeof(*tmp)); if (tmp == NULL) { - msg_gerr("Out of memory"); + msg_gerr("Out of memory\n"); return 1; }