Skip to content

Commit

Permalink
Fix compile warnings from trace statements
Browse files Browse the repository at this point in the history
Change-Id: Iff4dc8c219bbd9ec1858fefd26848ea3e41ad534
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/37830
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: Richard J. Knight <rjknight@us.ibm.com>
Reviewed-by: Sachin Gupta <sgupta2m@in.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Reviewed-by: PARVATHI RACHAKONDA <prachako@in.ibm.com>
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/37842
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
  • Loading branch information
Aravind T Nair authored and dcrowell77 committed Apr 3, 2017
1 parent 478f823 commit e452a1b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/import/hwpf/fapi2/include/collect_reg_ffdc.H
Expand Up @@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
/* Contributors Listed Below - COPYRIGHT 2015,2016 */
/* Contributors Listed Below - COPYRIGHT 2015,2017 */
/* [+] International Business Machines Corp. */
/* */
/* */
Expand Down Expand Up @@ -606,8 +606,8 @@ void collectRegFfdc(const fapi2::ffdc_t i_target,
// object of the FFDC class
o_errorInfoFfdc.push_back(std::shared_ptr<fapi2::ErrorInfoFfdc>(new ErrorInfoFfdc(i_ffdcId, l_pBuf, l_ffdcSize)));

FAPI_INF("collectRegFfdc. SCOM address count: 0x%lx", l_scomAddresses.size());
FAPI_INF("collectRegFfdc. CFAM address count: 0x%lx", l_cfamAddresses.size());
FAPI_INF("collectRegFfdc. SCOM address count: %d", (uint32_t)(l_scomAddresses.size()));
FAPI_INF("collectRegFfdc. CFAM address count: %d", (uint32_t)(l_cfamAddresses.size()));

FAPI_INF("collectRegFfdc() - exit");
}
Expand Down

0 comments on commit e452a1b

Please sign in to comment.