From: Paul Eggert Date: Wed, 9 May 2012 19:44:19 +0000 (-0700) Subject: * unexaix.c (make_hdr): Fix typo in prototype. X-Git-Tag: emacs-24.0.97~15 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=297834cdf39433f7bf8e63d6c784a3a2a9889b08;p=emacs.git * unexaix.c (make_hdr): Fix typo in prototype. This bug broke the build on AIX. Problem reported by Gilles Pion. --- diff --git a/src/ChangeLog b/src/ChangeLog index 1e6af943fb4..0d44f31fb04 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2012-05-09 Paul Eggert + + * unexaix.c (make_hdr): Fix typo in prototype. + This bug broke the build on AIX. Problem reported by Gilles Pion. + 2012-05-05 Eli Zaretskii * w32proc.c (new_child): Force Windows to reserve only 64KB of diff --git a/src/unexaix.c b/src/unexaix.c index 1bf65b68518..e27fb1d136d 100644 --- a/src/unexaix.c +++ b/src/unexaix.c @@ -110,7 +110,7 @@ report_error_1 (int fd, char *msg, int a1, int a2) error (msg, a1, a2); } -static int make_hdr (int, int, unsigned, unsigned, unsigned, char *, char *); +static int make_hdr (int, int, char *, char *); static void mark_x (char *); static int copy_text_and_data (int); static int copy_sym (int, int, char *, char *);