diff options
| author | Jan D | 2010-08-11 10:36:27 +0200 |
|---|---|---|
| committer | Jan D | 2010-08-11 10:36:27 +0200 |
| commit | 7aee76f47d6c0d03e8ca490e7f1721eeb2bca64a (patch) | |
| tree | ed05d52f37f1482f077607adf1021b694be051cc | |
| parent | 988e88ab11f71fd726ce237c9118f3c415323161 (diff) | |
| download | emacs-7aee76f47d6c0d03e8ca490e7f1721eeb2bca64a.tar.gz emacs-7aee76f47d6c0d03e8ca490e7f1721eeb2bca64a.zip | |
* unexmacosx.c (unexec_error): Use const char *.
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/unexmacosx.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index a3e08cf699d..1ec37f440c0 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-08-11 Jan Djärv <jan.h.d@swipnet.se> | ||
| 2 | |||
| 3 | * unexmacosx.c (unexec_error): Use const char *. | ||
| 4 | |||
| 1 | 2010-08-09 Dan Nicolaescu <dann@ics.uci.edu> | 5 | 2010-08-09 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 6 | ||
| 3 | * font.h (font_parse_xlfd, font_parse_fcname, font_unparse_fcname) | 7 | * font.h (font_parse_xlfd, font_parse_fcname, font_unparse_fcname) |
diff --git a/src/unexmacosx.c b/src/unexmacosx.c index ef43e9bef12..5c450e062c6 100644 --- a/src/unexmacosx.c +++ b/src/unexmacosx.c | |||
| @@ -267,7 +267,7 @@ unexec_copy (off_t dest, off_t src, ssize_t count) | |||
| 267 | /* Debugging and informational messages routines. */ | 267 | /* Debugging and informational messages routines. */ |
| 268 | 268 | ||
| 269 | static void | 269 | static void |
| 270 | unexec_error (char *format, ...) | 270 | unexec_error (const char *format, ...) |
| 271 | { | 271 | { |
| 272 | va_list ap; | 272 | va_list ap; |
| 273 | 273 | ||