aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2012-05-09 12:44:19 -0700
committerPaul Eggert2012-05-09 12:44:19 -0700
commit297834cdf39433f7bf8e63d6c784a3a2a9889b08 (patch)
treebb43d3cfa5c4e3f1b560de18717caf6722a36d9a /src
parent8633b1f4566f01eae2d596436cd97fa687f09051 (diff)
downloademacs-297834cdf39433f7bf8e63d6c784a3a2a9889b08.tar.gz
emacs-297834cdf39433f7bf8e63d6c784a3a2a9889b08.zip
* unexaix.c (make_hdr): Fix typo in prototype.
This bug broke the build on AIX. Problem reported by Gilles Pion.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/unexaix.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 1e6af943fb4..0d44f31fb04 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12012-05-09 Paul Eggert <eggert@cs.ucla.edu>
2
3 * unexaix.c (make_hdr): Fix typo in prototype.
4 This bug broke the build on AIX. Problem reported by Gilles Pion.
5
12012-05-05 Eli Zaretskii <eliz@gnu.org> 62012-05-05 Eli Zaretskii <eliz@gnu.org>
2 7
3 * w32proc.c (new_child): Force Windows to reserve only 64KB of 8 * 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)
110 error (msg, a1, a2); 110 error (msg, a1, a2);
111} 111}
112 112
113static int make_hdr (int, int, unsigned, unsigned, unsigned, char *, char *); 113static int make_hdr (int, int, char *, char *);
114static void mark_x (char *); 114static void mark_x (char *);
115static int copy_text_and_data (int); 115static int copy_text_and_data (int);
116static int copy_sym (int, int, char *, char *); 116static int copy_sym (int, int, char *, char *);