OSDN Git Service

Daily bump.
[pf3gnuchains/gcc-fork.git] / gcc / ada / a-tienio.adb
index 6ff484d..4361e2b 100644 (file)
@@ -6,7 +6,7 @@
 --                                                                          --
 --                                 B o d y                                  --
 --                                                                          --
---          Copyright (C) 1992-2006, Free Software Foundation, Inc.         --
+--          Copyright (C) 1992-2007, Free Software Foundation, Inc.         --
 --                                                                          --
 -- 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 Ada.Text_IO.Enumeration_IO is
    ---------
 
    procedure Get (File : File_Type; Item : out Enum) is
-      Buf    : String (1 .. Enum'Width);
+      Buf    : String (1 .. Enum'Width + 1);
       Buflen : Natural;
 
    begin
@@ -61,7 +61,6 @@ package body Ada.Text_IO.Enumeration_IO is
 
    procedure Get (Item : out Enum) is
       pragma Unsuppress (Range_Check);
-
    begin
       Get (Current_In, Item);
    end Get;
@@ -98,7 +97,6 @@ package body Ada.Text_IO.Enumeration_IO is
       Set   : Type_Set := Default_Setting)
    is
       Image : constant String := Enum'Image (Item);
-
    begin
       Aux.Put (File, Image, Width, Set);
    end Put;
@@ -118,7 +116,6 @@ package body Ada.Text_IO.Enumeration_IO is
       Set  : Type_Set := Default_Setting)
    is
       Image : constant String := Enum'Image (Item);
-
    begin
       Aux.Puts (To, Image, Set);
    end Put;