diff options
| author | Dmitry Antipov | 2014-02-03 11:05:28 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2014-02-03 11:05:28 +0400 |
| commit | 34baf96c314da0822f854dc237ea4931fcb7e87d (patch) | |
| tree | eae831a9fa482d11dce6ab521e652b44b71702dd /src/print.c | |
| parent | be445cf2abe016f00c59964268d6d46c3b5da421 (diff) | |
| download | emacs-34baf96c314da0822f854dc237ea4931fcb7e87d.tar.gz emacs-34baf96c314da0822f854dc237ea4931fcb7e87d.zip | |
* print.c (Fexternal_debugging_output): Add cast to pacify
--enable-gcc-warnings.
Diffstat (limited to 'src/print.c')
| -rw-r--r-- | src/print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c index f6d2baa6cd1..475be9ec285 100644 --- a/src/print.c +++ b/src/print.c | |||
| @@ -731,7 +731,7 @@ to make it write to the debugging output. */) | |||
| 731 | unsigned char mbstr[MAX_MULTIBYTE_LENGTH]; | 731 | unsigned char mbstr[MAX_MULTIBYTE_LENGTH]; |
| 732 | ptrdiff_t len = CHAR_STRING (ch, mbstr); | 732 | ptrdiff_t len = CHAR_STRING (ch, mbstr); |
| 733 | Lisp_Object encoded_ch = | 733 | Lisp_Object encoded_ch = |
| 734 | ENCODE_SYSTEM (make_multibyte_string (mbstr, 1, len)); | 734 | ENCODE_SYSTEM (make_multibyte_string ((char *) mbstr, 1, len)); |
| 735 | 735 | ||
| 736 | fwrite (SSDATA (encoded_ch), SBYTES (encoded_ch), 1, stderr); | 736 | fwrite (SSDATA (encoded_ch), SBYTES (encoded_ch), 1, stderr); |
| 737 | #ifdef WINDOWSNT | 737 | #ifdef WINDOWSNT |