summaryrefslogtreecommitdiffstats
path: root/src/usr/diag/prdf/runtime
diff options
context:
space:
mode:
authorPatrick Williams <iawillia@us.ibm.com>2015-05-27 08:05:05 -0500
committerA. Patrick Williams III <iawillia@us.ibm.com>2015-06-10 13:58:59 -0500
commitca80eb16f02700ea16a25f01c92c700497a81993 (patch)
tree5ce3705e92a1131ea34074ac22c958890d296030 /src/usr/diag/prdf/runtime
parent6ce0dc963cca7d68658a46dc5b175504935c4141 (diff)
downloadtalos-hostboot-ca80eb16f02700ea16a25f01c92c700497a81993.tar.gz
talos-hostboot-ca80eb16f02700ea16a25f01c92c700497a81993.zip
PRD: C++11 bad string literal concatenation
Change-Id: Ib41a5b356a35cac87c20139d3ca6c5ef0e0de8bb RTC:124186 Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/18276 Tested-by: Jenkins Server Reviewed-by: Zane Shelley <zshelle@us.ibm.com> Tested-by: Jenkins OP Build CI Reviewed-by: BENJAMIN J. WEISENBECK <bweisenb@us.ibm.com> Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/diag/prdf/runtime')
-rw-r--r--src/usr/diag/prdf/runtime/prdfPlatServices_rt.C8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/usr/diag/prdf/runtime/prdfPlatServices_rt.C b/src/usr/diag/prdf/runtime/prdfPlatServices_rt.C
index 2a50aa5af..dad82a0b3 100644
--- a/src/usr/diag/prdf/runtime/prdfPlatServices_rt.C
+++ b/src/usr/diag/prdf/runtime/prdfPlatServices_rt.C
@@ -55,7 +55,7 @@ void sendPageGardRequest( uint64_t i_systemAddress )
{
if( !g_hostInterfaces || !g_hostInterfaces->memory_error )
{
- PRDF_ERR(PRDF_FUNC" memory_error() interface is not defined");
+ PRDF_ERR(PRDF_FUNC " memory_error() interface is not defined");
break;
}
@@ -64,7 +64,7 @@ void sendPageGardRequest( uint64_t i_systemAddress )
MEMORY_ERROR_CE );
if( SUCCESS != rc )
{
- PRDF_ERR(PRDF_FUNC" memory_error() failed");
+ PRDF_ERR(PRDF_FUNC " memory_error() failed");
break;
}
}while(0);
@@ -88,7 +88,7 @@ void sendDynMemDeallocRequest( uint64_t i_startAddr, uint64_t i_endAddr )
{
if( !g_hostInterfaces || !g_hostInterfaces->memory_error )
{
- PRDF_ERR(PRDF_FUNC" memory_error() interface is not defined");
+ PRDF_ERR(PRDF_FUNC " memory_error() interface is not defined");
break;
}
@@ -97,7 +97,7 @@ void sendDynMemDeallocRequest( uint64_t i_startAddr, uint64_t i_endAddr )
MEMORY_ERROR_UE );
if( SUCCESS != rc )
{
- PRDF_ERR(PRDF_FUNC" memory_error() failed");
+ PRDF_ERR(PRDF_FUNC " memory_error() failed");
break;
}
}while(0);
OpenPOWER on IntegriCloud