diff options
-rw-r--r-- | tests/dbus/filedescriptor-errors.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/dbus/filedescriptor-errors.test b/tests/dbus/filedescriptor-errors.test index 96f28cff9..ad3081653 100644 --- a/tests/dbus/filedescriptor-errors.test +++ b/tests/dbus/filedescriptor-errors.test @@ -8,7 +8,7 @@ interface Test : Object { public abstract string test (UnixOutputStream output_stream) throws IOError; } -void pipe (out UnixInputStream input, out UnixOutputStream output) throws IOError { +void create_streams (out UnixInputStream input, out UnixOutputStream output) throws IOError { int pipefd[2]; if (Posix.pipe (pipefd) < 0) { throw new IOError.FAILED ("Pipe creation failed"); @@ -23,7 +23,7 @@ void main () { UnixInputStream i; UnixOutputStream o; - pipe (out i, out o); + create_streams (out i, out o); try { test.test (o); |