summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score/cpu/unix/cpu.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-03-27 19:42:58 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-03-27 19:42:58 +0000
commita30359bbddf2d358c3c6fd4db36b985fb3e0538e (patch)
tree0f82947927cfa3d2a1b061b83f9439ea11b3ee4b /c/src/exec/score/cpu/unix/cpu.c
parentNodes, menus, etc are automatically generated now (diff)
downloadrtems-a30359bbddf2d358c3c6fd4db36b985fb3e0538e.tar.bz2
Changed int to unsigned32 to match cpu.h.
Diffstat (limited to 'c/src/exec/score/cpu/unix/cpu.c')
-rw-r--r--c/src/exec/score/cpu/unix/cpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/src/exec/score/cpu/unix/cpu.c b/c/src/exec/score/cpu/unix/cpu.c
index a8fa6bb4d3..af59fdbc72 100644
--- a/c/src/exec/score/cpu/unix/cpu.c
+++ b/c/src/exec/score/cpu/unix/cpu.c
@@ -40,7 +40,7 @@
typedef struct {
jmp_buf regs;
- unsigned32 isr_level;
+ int isr_level;
} Context_Control_overlay;
void _CPU_Signal_initialize(void);