summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/interr.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/include/rtems/score/interr.h')
-rw-r--r--cpukit/score/include/rtems/score/interr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/include/rtems/score/interr.h b/cpukit/score/include/rtems/score/interr.h
index 71fa561d3b..63a0c02b4c 100644
--- a/cpukit/score/include/rtems/score/interr.h
+++ b/cpukit/score/include/rtems/score/interr.h
@@ -64,7 +64,7 @@ typedef enum {
typedef struct {
Internal_errors_Source the_source;
boolean is_internal;
- unsigned32 the_error;
+ uint32_t the_error;
} Internal_errors_Information;
/*
@@ -85,7 +85,7 @@ SCORE_EXTERN Internal_errors_Information Internal_errors_What_happened;
void volatile _Internal_error_Occurred(
Internal_errors_Source the_source,
boolean is_internal,
- unsigned32 the_error
+ uint32_t the_error
);
#ifdef __cplusplus