aboutsummaryrefslogtreecommitdiffhomepage
path: root/io.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'io.cpp')
-rw-r--r--io.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/io.cpp b/io.cpp
index 8bbc0743..9eb29f2b 100644
--- a/io.cpp
+++ b/io.cpp
@@ -55,9 +55,6 @@ void io_data_t::print() const
{
switch (io_mode)
{
- case IO_FILE:
- fprintf(stderr, "file (%s)\n", filename_cstr);
- break;
case IO_PIPE:
fprintf(stderr, "pipe {%d, %d}\n", param1.pipe_fd[0], param1.pipe_fd[1]);
break;
@@ -77,6 +74,11 @@ void io_fd_t::print() const
fprintf(stderr, "FD map %d -> %d\n", old_fd, fd);
}
+void io_file_t::print() const
+{
+ fprintf(stderr, "file (%s)\n", filename_cstr);
+}
+
void io_buffer_read(io_data_t *d)
{
exec_close(d->param1.pipe_fd[1]);