summaryrefslogtreecommitdiffstats
path: root/c/src/ada/rtems.ads
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2005-05-23 15:00:03 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2005-05-23 15:00:03 +0000
commitcb6fc17b4f4e12f1395324db7ef24ca3b9ab7197 (patch)
tree0b68a8fd86f0f467651ad8fed405c17be4d560f2 /c/src/ada/rtems.ads
parent2005-05-23 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-cb6fc17b4f4e12f1395324db7ef24ca3b9ab7197.tar.bz2
2005-05-23 Joel Sherrill <joel@OARcorp.com>
PR rtems_misc/795 * rtems.ads: Fix parameter ordering.
Diffstat (limited to 'c/src/ada/rtems.ads')
-rw-r--r--c/src/ada/rtems.ads4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/src/ada/rtems.ads b/c/src/ada/rtems.ads
index 752a6fe064..15675076b8 100644
--- a/c/src/ada/rtems.ads
+++ b/c/src/ada/rtems.ads
@@ -1302,8 +1302,8 @@ pragma Elaborate_Body (RTEMS);
procedure Region_Resize_Segment (
ID : in RTEMS.ID;
Segment : in RTEMS.Address;
- Old_Size : in RTEMS.Unsigned32;
- Size : out RTEMS.Unsigned32;
+ Size : in RTEMS.Unsigned32;
+ Old_Size : out RTEMS.Unsigned32;
Result : out RTEMS.Status_Codes
);