id,summary,reporter,owner,description,type,status,priority,milestone,component,resolution,keywords,cc,branch,branch_author,launchpad_bug
5734,attempt to quash a warning by storing the result of write() in _sigchld.c is unsuccessful,glyph,glyph,"We should apply this:

{{{
#!diff
===================================================================
--- twisted/internet/_sigchld.c	(revision 34656)
+++ twisted/internet/_sigchld.c	(working copy)
@@ -12,7 +12,7 @@
 
 static void got_signal(int sig) {
     int saved_errno = errno;
-    int ignored_result;
+    ssize_t ignored_result;
 
     /* write() errors are unhandled.  If the buffer is full, we don't
      * care.  What about other errors? */
}}}

since, in fact, `write()` returns `ssize_t` and not `int`.  (Sometimes they're the same thing, sometimes not.)",enhancement,closed,normal,,core,fixed,,,branches/store-write-result-sigchld-5734,ashfall,
