From: Eric Blake Date: Thu, 15 Apr 2010 13:54:02 +0000 (-0600) Subject: test-forkpty: fix expected signature X-Git-Tag: v0.1~4253 X-Git-Url: https://erislabs.net/gitweb/?a=commitdiff_plain;h=56d363d4ccf9d50e9c2fcc5080e8e8d69bc9d5ca;p=gnulib.git test-forkpty: fix expected signature * tests/test-forkpty.c (SIGNATURE_CHECK): Add appropriate const. Reported by Simon Josefsson. Signed-off-by: Eric Blake --- diff --git a/ChangeLog b/ChangeLog index 7098e4195..61d929242 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2010-04-15 Eric Blake + + test-forkpty: fix expected signature + * tests/test-forkpty.c (SIGNATURE_CHECK): Add appropriate const. + Reported by Simon Josefsson. + 2010-04-15 Jim Meyering maint.mk: texinfo_suffix_re_: correct the default regexp diff --git a/tests/test-forkpty.c b/tests/test-forkpty.c index d87a10754..bbccb221e 100644 --- a/tests/test-forkpty.c +++ b/tests/test-forkpty.c @@ -21,8 +21,8 @@ #include #include "signature.h" -SIGNATURE_CHECK (forkpty, int, (int *, char *, struct termios *, - struct winsize *)); +SIGNATURE_CHECK (forkpty, int, (int *, char *, struct termios const *, + struct winsize const *)); #include