diff options
| author | Paul Eggert | 2011-03-19 19:45:19 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-03-19 19:45:19 -0700 |
| commit | f990b4e5d91b66e20f06cc0dab0b3f0ab97c3f91 (patch) | |
| tree | 136fddfd7e9a3ba7f59fd0cdf1d3c3c8fc5c079f /src/process.c | |
| parent | 0da4933597401742827d31c66836082c1ee70875 (diff) | |
| download | emacs-f990b4e5d91b66e20f06cc0dab0b3f0ab97c3f91.tar.gz emacs-f990b4e5d91b66e20f06cc0dab0b3f0ab97c3f91.zip | |
* process.c (process_send_signal): Add cast to avoid pointer signedness problem.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index 3cdf045f4f4..ae7ec158ef9 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -5927,7 +5927,7 @@ process_send_signal (Lisp_Object process, int signo, Lisp_Object current_group, | |||
| 5927 | 5927 | ||
| 5928 | if (sig_char && *sig_char != CDISABLE) | 5928 | if (sig_char && *sig_char != CDISABLE) |
| 5929 | { | 5929 | { |
| 5930 | send_process (proc, sig_char, 1, Qnil); | 5930 | send_process (proc, (char *) sig_char, 1, Qnil); |
| 5931 | return; | 5931 | return; |
| 5932 | } | 5932 | } |
| 5933 | /* If we can't send the signal with a character, | 5933 | /* If we can't send the signal with a character, |