# HG changeset patch # User Eric Blake # Date 1271339642 21600 # Node ID 4bca2ccf46d1b4b0db80a740c01c0a2cf151e3e5 # Parent 2376509f2722580f970ff93e04a3fb8889ec3d61 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 --- 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 --- 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