mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-02 05:41:16 -03:00
Fix io_buffer_t::print to take unsigned long argument.
This commit is contained in:
2
io.cpp
2
io.cpp
@@ -71,7 +71,7 @@ void io_pipe_t::print() const
|
||||
void io_buffer_t::print() const
|
||||
{
|
||||
fprintf(stderr, "buffer %p (input: %s, size %lu)\n", out_buffer_ptr(),
|
||||
is_input ? "yes" : "no", out_buffer_size());
|
||||
is_input ? "yes" : "no", (unsigned long) out_buffer_size());
|
||||
}
|
||||
|
||||
void io_buffer_t::read()
|
||||
|
||||
Reference in New Issue
Block a user