diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 1 | ||||
| -rw-r--r-- | src/process.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 12a70ce9575..fa0ff89e5f7 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -6,6 +6,7 @@ | |||
| 6 | Rename or move locals. | 6 | Rename or move locals. |
| 7 | (Fmake_network_process): Define label "retry_connect" only if needed. | 7 | (Fmake_network_process): Define label "retry_connect" only if needed. |
| 8 | (Fnetwork_interface_info): Fix pointer signedness. | 8 | (Fnetwork_interface_info): Fix pointer signedness. |
| 9 | (process_send_signal): Add cast to avoid pointer signedness problem. | ||
| 9 | 10 | ||
| 10 | 2011-03-19 Paul Eggert <eggert@cs.ucla.edu> | 11 | 2011-03-19 Paul Eggert <eggert@cs.ucla.edu> |
| 11 | 12 | ||
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, |