# HG changeset patch # User Stu Tomlinson # Date 1277860374 0 # Node ID 6a3aaa4e5e56d54d71fb8eec23aeeaceb124a90a # Parent 53469b47d3f39fb15e584a58a11c3dea3ac990df Get rid of this warning: gntdebug.c: In function ¡Æhandle_fprintf_stderr¡Ç: gntdebug.c:80: warning: ignoring return value of ¡Æpipe¡Ç, declared with attribute warn_unused_result I'm guessing this is the right fix. Really I just needed to commit something so I can test commit email scripts diff -r 53469b47d3f3 -r 6a3aaa4e5e56 finch/gntdebug.c --- a/finch/gntdebug.c Tue Jun 29 19:22:31 2010 +0000 +++ b/finch/gntdebug.c Wed Jun 30 01:12:54 2010 +0000 @@ -77,7 +77,10 @@ } return; } - pipe(pipes); + if (pipe(pipes)) { + readhandle = -1; + return; + }; dup2(pipes[1], STDERR_FILENO); stderrch = g_io_channel_unix_new(pipes[0]);