summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/status-checks.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/include/rtems/status-checks.h')
-rw-r--r--cpukit/include/rtems/status-checks.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/include/rtems/status-checks.h b/cpukit/include/rtems/status-checks.h
index f62289fe4d..1face9488e 100644
--- a/cpukit/include/rtems/status-checks.h
+++ b/cpukit/include/rtems/status-checks.h
@@ -83,7 +83,7 @@ extern "C" {
#define CHECK_SCRV( sc, hint ) \
if ((sc) != RTEMS_SUCCESSFUL) { \
SYSLOG_ERROR( "SC = %i: %s\n", sc, hint ); \
- return -(sc); \
+ return -((int) (sc)); \
} else { \
DEBUG_PRINT( "Ok: %s\n", hint ); \
}
@@ -149,7 +149,7 @@ extern "C" {
#define CLEANUP_SCRV( sc, rv, label, hint ) \
if ((sc) != RTEMS_SUCCESSFUL) { \
SYSLOG_ERROR( "SC = %i: %s\n", sc, hint ); \
- rv = -(sc); \
+ rv = -((int) (sc)); \
goto label; \
} else { \
DEBUG_PRINT( "Ok: %s\n", hint ); \