summaryrefslogtreecommitdiff
path: root/gcc/ada/g-boubuf.adb
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ada/g-boubuf.adb')
-rw-r--r--gcc/ada/g-boubuf.adb4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/g-boubuf.adb b/gcc/ada/g-boubuf.adb
index ef75f13585f..a8ac5f1a921 100644
--- a/gcc/ada/g-boubuf.adb
+++ b/gcc/ada/g-boubuf.adb
@@ -6,7 +6,7 @@
-- --
-- B o d y --
-- --
--- Copyright (C) 2003-2005, AdaCore --
+-- Copyright (C) 2003-2006, AdaCore --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
@@ -42,7 +42,7 @@ package body GNAT.Bounded_Buffers is
-- Insert --
------------
- entry Insert (Item : in Element) when Count /= Capacity is
+ entry Insert (Item : Element) when Count /= Capacity is
begin
Values (Next_In) := Item;
Next_In := (Next_In mod Capacity) + 1;