summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-09-18 20:50:58 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-09-18 20:50:58 +0000
commit56e0b884f7be93055ebab17971708002001dfece (patch)
tree817e906f89ea5219a56ee93ed2c795a4b6f803b5
parentuses address object rather than direct pointer arithmetic (diff)
downloadrtems-56e0b884f7be93055ebab17971708002001dfece.tar.bz2
corrected prototype of _Objects_Get_next
-rw-r--r--c/src/exec/score/src/object.c2
-rw-r--r--cpukit/score/src/object.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/c/src/exec/score/src/object.c b/c/src/exec/score/src/object.c
index 14c15a36c7..6226828fa4 100644
--- a/c/src/exec/score/src/object.c
+++ b/c/src/exec/score/src/object.c
@@ -455,7 +455,7 @@ Objects_Control *
_Objects_Get_next(
Objects_Information *information,
Objects_Id id,
- unsigned32 *location_p,
+ Objects_Locations *location_p,
Objects_Id *next_id_p
)
{
diff --git a/cpukit/score/src/object.c b/cpukit/score/src/object.c
index 14c15a36c7..6226828fa4 100644
--- a/cpukit/score/src/object.c
+++ b/cpukit/score/src/object.c
@@ -455,7 +455,7 @@ Objects_Control *
_Objects_Get_next(
Objects_Information *information,
Objects_Id id,
- unsigned32 *location_p,
+ Objects_Locations *location_p,
Objects_Id *next_id_p
)
{