]> git.eshelyaron.com Git - emacs.git/commitdiff
* process.c (process_send_signal): Add cast to avoid pointer signedness problem.
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 20 Mar 2011 02:45:19 +0000 (19:45 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 20 Mar 2011 02:45:19 +0000 (19:45 -0700)
src/ChangeLog
src/process.c

index 12a70ce957587fb775c2da600b61a17b521e3086..fa0ff89e5f731086f2bb732b17cba90b5aad29e7 100644 (file)
@@ -6,6 +6,7 @@
        Rename or move locals.
        (Fmake_network_process): Define label "retry_connect" only if needed.
        (Fnetwork_interface_info): Fix pointer signedness.
+       (process_send_signal): Add cast to avoid pointer signedness problem.
 
 2011-03-19  Paul Eggert  <eggert@cs.ucla.edu>
 
index 3cdf045f4f49bfd9d3a019a3f402330a90d34f3b..ae7ec158ef9700039e9aeaa805d36b51d9843dba 100644 (file)
@@ -5927,7 +5927,7 @@ process_send_signal (Lisp_Object process, int signo, Lisp_Object current_group,
 
       if (sig_char && *sig_char != CDISABLE)
        {
-         send_process (proc, sig_char, 1, Qnil);
+         send_process (proc, (char *) sig_char, 1, Qnil);
          return;
        }
       /* If we can't send the signal with a character,