summaryrefslogtreecommitdiffstats
path: root/import/hwpf/fapi2/include
diff options
context:
space:
mode:
authorBrian Silver <bsilver@us.ibm.com>2015-03-26 10:04:22 -0500
committerJoshua Hunsberger <jahunsbe@us.ibm.com>2017-10-23 15:50:58 -0500
commit99fe5ac5c1af57e337b26859a725cde9ae299b3c (patch)
treefe62a0db4554403041b4fc79531efb849c5845c5 /import/hwpf/fapi2/include
parenta29155c05c6a8a45440b25177e38744c490d26e6 (diff)
downloadtalos-hcode-99fe5ac5c1af57e337b26859a725cde9ae299b3c.tar.gz
talos-hcode-99fe5ac5c1af57e337b26859a725cde9ae299b3c.zip
Change clean_up label to fapi_try_exit
Change-Id: I3384d6c30fc907a7202b5ffe639d7402f294f633 Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/16656 Reviewed-by: Matt K. Light <mklight@us.ibm.com> Reviewed-by: Thi N. Tran <thi@us.ibm.com> Reviewed-by: Brian Silver <bsilver@us.ibm.com> Tested-by: Brian Silver <bsilver@us.ibm.com>
Diffstat (limited to 'import/hwpf/fapi2/include')
-rw-r--r--import/hwpf/fapi2/include/error_scope.H6
1 files changed, 3 insertions, 3 deletions
diff --git a/import/hwpf/fapi2/include/error_scope.H b/import/hwpf/fapi2/include/error_scope.H
index 6e2b3129..4e4bc485 100644
--- a/import/hwpf/fapi2/include/error_scope.H
+++ b/import/hwpf/fapi2/include/error_scope.H
@@ -46,7 +46,7 @@
#define FAPI_TRY_NO_TRACE( __operation__ ) \
if ((fapi2::current_err = (__operation__)) != fapi2::FAPI2_RC_SUCCESS) \
{ \
- goto clean_up; \
+ goto fapi_try_exit; \
}
// Why debug? Because this isn't a mechanism to gather FFDC
@@ -57,7 +57,7 @@
if ((fapi2::current_err = (__operation__)) != fapi2::FAPI2_RC_SUCCESS) \
{ \
FAPI_DBG(__VA_ARGS__); \
- goto clean_up; \
+ goto fapi_try_exit; \
}
#define FAPI_TRY1 FAPI_TRY_NO_TRACE
@@ -98,7 +98,7 @@
{ \
(__ffdc__).execute(); \
FAPI_ERR(__VA_ARGS__); \
- goto clean_up; \
+ goto fapi_try_exit; \
}
OpenPOWER on IntegriCloud