diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ada/mlib-utl.adb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/ada/mlib-utl.adb b/gcc/ada/mlib-utl.adb index f6512b4..91c6b9c 100644 --- a/gcc/ada/mlib-utl.adb +++ b/gcc/ada/mlib-utl.adb @@ -85,9 +85,7 @@ package body MLib.Utl is -- Make sure the Output buffer does not overflow - if Line_Length + 1 + Arguments (J)'Length > - Integer (Opt.Max_Line_Length) - then + if Line_Length + 1 + Arguments (J)'Length > Buffer_Max then Write_Eol; Line_Length := 0; end if; |