summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1997-04-07 21:16:47 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1997-04-07 21:16:47 +0000
commit94784cf8e583dbffa8aee9dcfd2506867aa9cb19 (patch)
tree06834b210680f6fa2260bbb048addb3d13667d59
parentadded "ifndef" for ASM to avoid redefinition warnings. (diff)
downloadrtems-94784cf8e583dbffa8aee9dcfd2506867aa9cb19.tar.bz2
changed signed int to unsigned to eliminate warning
-rw-r--r--c/src/exec/score/cpu/hppa1.1/cpu.c2
-rw-r--r--cpukit/score/cpu/hppa1.1/cpu.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/c/src/exec/score/cpu/hppa1.1/cpu.c b/c/src/exec/score/cpu/hppa1.1/cpu.c
index d72dda4941..9ec9a19068 100644
--- a/c/src/exec/score/cpu/hppa1.1/cpu.c
+++ b/c/src/exec/score/cpu/hppa1.1/cpu.c
@@ -122,7 +122,7 @@ void _CPU_Initialize(
)
{
register unsigned8 *fp_context;
- int i;
+ unsigned32 i;
proc_ptr old_handler;
/*
diff --git a/cpukit/score/cpu/hppa1.1/cpu.c b/cpukit/score/cpu/hppa1.1/cpu.c
index d72dda4941..9ec9a19068 100644
--- a/cpukit/score/cpu/hppa1.1/cpu.c
+++ b/cpukit/score/cpu/hppa1.1/cpu.c
@@ -122,7 +122,7 @@ void _CPU_Initialize(
)
{
register unsigned8 *fp_context;
- int i;
+ unsigned32 i;
proc_ptr old_handler;
/*