diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2012-05-09 12:44:19 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2012-05-09 12:44:19 -0700 |
commit | 297834cdf39433f7bf8e63d6c784a3a2a9889b08 (patch) | |
tree | bb43d3cfa5c4e3f1b560de18717caf6722a36d9a /src/unexaix.c | |
parent | 8633b1f4566f01eae2d596436cd97fa687f09051 (diff) | |
download | emacs-297834cdf39433f7bf8e63d6c784a3a2a9889b08.tar.gz |
* unexaix.c (make_hdr): Fix typo in prototype.
This bug broke the build on AIX. Problem reported by Gilles Pion.
Diffstat (limited to 'src/unexaix.c')
-rw-r--r-- | src/unexaix.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 *); |