diff options
author | Reza Arbab <arbab@linux.vnet.ibm.com> | 2018-02-12 10:43:54 -0600 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2018-02-13 01:30:11 -0600 |
commit | bfdf85c84a925a7c0ad0bd8f1dc0fc5c059d9781 (patch) | |
tree | 92d8ed825ce73c03f2b70f81c585f2e8ace7b314 /hw | |
parent | ae422255bfa3c202faa5bb58b29cb55ad390697f (diff) | |
download | skiboot-bfdf85c84a925a7c0ad0bd8f1dc0fc5c059d9781.zip skiboot-bfdf85c84a925a7c0ad0bd8f1dc0fc5c059d9781.tar.gz skiboot-bfdf85c84a925a7c0ad0bd8f1dc0fc5c059d9781.tar.bz2 |
hw/phys-map: Add missing newline in log output
The call to prlog() here is missing a \n.
Signed-off-by: Reza Arbab <arbab@linux.vnet.ibm.com>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/phys-map.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/phys-map.c b/hw/phys-map.c index a2b5dbd..fe949e4 100644 --- a/hw/phys-map.c +++ b/hw/phys-map.c @@ -184,7 +184,7 @@ void phys_map_get(uint64_t gcid, enum phys_map_type type, error: /* Something has gone really wrong */ - prlog(PR_EMERG, "ERROR: Failed to lookup BAR type:%i index:%i", + prlog(PR_EMERG, "ERROR: Failed to lookup BAR type:%i index:%i\n", type, index); assert(0); } |