On Tue, Nov 27, 2018 at 01:24:38PM -0500, Chet Ramey wrote:
> The second beta release of bash-5.0 is now available with the URL
> 
> ftp://ftp.cwru.edu/pub/bash/bash-5.0-beta2.tar.gz
> 
I see this

[ 2709s] seq.c: In function 'long_double_format':
[ 2709s] seq.c:166:9: error: expected ';' before 'return'
[ 2709s]          return ldfmt;
[ 2709s]          ^~~~~~

with attached patcj this should go away

-- 
  "Having a smoking section in a restaurant is like having
          a peeing section in a swimming pool." -- Edward Burr
--- bash-5.0-beta2/examples/loadables/seq.c
+++ bash-5.0-beta2/examples/loadables/seq.c	2018-11-29 15:06:37.818582755 +0000
@@ -161,7 +161,7 @@ long_double_format (char const *fmt)
         strcpy (ldfmt + length_modifier_offset + 1,
                 fmt + length_modifier_offset + has_L);
 #else
-        strcpy (ldfmt + length_modifier_offset, fmt + length_modifier_offset)
+        strcpy (ldfmt + length_modifier_offset, fmt + length_modifier_offset);
 #endif
         return ldfmt;
       }

Attachment: signature.asc
Description: PGP signature

Reply via email to