summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/status-checks.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-08-20 17:29:37 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-08-20 17:29:37 +0000
commit85bca3f2283baa0630b148d5c16612fcbb9f87e6 (patch)
tree8160883b76ac0462bababed6e337334894e59cce /cpukit/include/rtems/status-checks.h
parent2008-08-20 Sebastian Huber <sebastian.huber@embedded-brains.de> (diff)
downloadrtems-85bca3f2283baa0630b148d5c16612fcbb9f87e6.tar.bz2
2008-08-20 Sebastian Huber <sebastian.huber@embedded-brains.de>
* include/rtems/status-checks.h: Fixed integer conversion warning.
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 ); \