summaryrefslogtreecommitdiffstats
path: root/import
diff options
context:
space:
mode:
authorBrian Silver <bsilver@us.ibm.com>2015-03-26 10:04:22 -0500
committerDerk Rembold <rembold@de.ibm.com>2015-09-03 07:23:06 -0500
commit5c701cc297196067c711d05f67ae6e200b60fb49 (patch)
treeefdcecae13da81e448b31fb6a49312f751f7b5f0 /import
parent750805dfcdc292befe28a6b774bce4f68ee5a0c6 (diff)
downloadtalos-sbe-5c701cc297196067c711d05f67ae6e200b60fb49.tar.gz
talos-sbe-5c701cc297196067c711d05f67ae6e200b60fb49.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> Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/20130 Tested-by: Jenkins Server Reviewed-by: Derk Rembold <rembold@de.ibm.com>
Diffstat (limited to 'import')
-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 e6e2a508..4c916745 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