https://gcc.gnu.org/g:bb0dec9d1321582fbece7fc2688ae107c48aa1df

commit r16-4525-gbb0dec9d1321582fbece7fc2688ae107c48aa1df
Author: Eric Botcazou <[email protected]>
Date:   Mon Oct 20 23:57:01 2025 +0200

    Ada: Fix incorrect specification of GNAT.Calendar.Time_IO "%c"
    
    The timezone is not printed by the "%c" specifier.
    
    gcc/ada/
            PR ada/32318
            * libgnat/g-catiio.adb (Image_Helper) <'c'>: Fix comment.

Diff:
---
 gcc/ada/libgnat/g-catiio.adb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/ada/libgnat/g-catiio.adb b/gcc/ada/libgnat/g-catiio.adb
index 531070616a22..d229b3ba61b5 100644
--- a/gcc/ada/libgnat/g-catiio.adb
+++ b/gcc/ada/libgnat/g-catiio.adb
@@ -515,7 +515,7 @@ package body GNAT.Calendar.Time_IO is
                   Result := Result &
                     Image (Month_Name'Image (Month_Name'Val (Month - 1)));
 
-               --  Locale's date and time (Sat Nov 04 12:02:33 EST 1989)
+               --  Locale's date and time (Sat Nov 04 12:02:33 1989)
 
                when 'c' =>
                   case Padding is

Reply via email to