Skip to content

Commit

Permalink
hdata/memory: Add newlines to debug messages
Browse files Browse the repository at this point in the history
Missed a few.

Signed-off-by: Oliver O'Halloran <oohall@gmail.com>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
  • Loading branch information
oohal authored and stewartsmith committed Jul 25, 2017
1 parent efa238b commit 0443f60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hdata/memory.c
Original file line number Diff line number Diff line change
Expand Up @@ -528,13 +528,13 @@ static void parse_trace_reservations(struct HDIF_common_hdr *ms_vpd)
*/

if (!HDIF_get_idata(ms_vpd, MSVPD_IDATA_TRACE_AREAS, &size) || !size) {
prlog(PR_DEBUG, "MS VPD: No trace areas found.");
prlog(PR_DEBUG, "MS VPD: No trace areas found\n");
return;
}

count = HDIF_get_iarray_size(ms_vpd, MSVPD_IDATA_TRACE_AREAS);
if (count <= 0) {
prlog(PR_DEBUG, "MS VPD: No trace areas found.");
prlog(PR_DEBUG, "MS VPD: No trace areas found\n");
return;
}

Expand Down

0 comments on commit 0443f60

Please sign in to comment.