summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-07-01 15:01:25 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-07-01 15:01:25 +0000
commit69b7b53aec2c2857dd02ed6c03fc54db2e044cd0 (patch)
tree191648f580bc02d2f67a38d8c6d09a0444cc7611
parentd488ce49bb71d99d1f23a30ff6594e2ad759f6fa (diff)
fix gcc4.4 compile warning
git-svn-id: svn://localhost/ardour2/branches/3.0@7346 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--libs/pbd/crossthread.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/pbd/crossthread.cc b/libs/pbd/crossthread.cc
index 7ccf741380..12ca19b945 100644
--- a/libs/pbd/crossthread.cc
+++ b/libs/pbd/crossthread.cc
@@ -72,7 +72,7 @@ void
CrossThreadChannel::wakeup ()
{
char c = 0;
- ::write (fds[1], &c, 1);
+ (void) ::write (fds[1], &c, 1);
}
RefPtr<IOSource>