mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 05:13:10 +00:00
Fix io_buffer_t::print to take unsigned long argument.
This commit is contained in:
parent
fcb3f36065
commit
3eac5f9ab7
1 changed files with 1 additions and 1 deletions
2
io.cpp
2
io.cpp
|
@ -71,7 +71,7 @@ void io_pipe_t::print() const
|
||||||
void io_buffer_t::print() const
|
void io_buffer_t::print() const
|
||||||
{
|
{
|
||||||
fprintf(stderr, "buffer %p (input: %s, size %lu)\n", out_buffer_ptr(),
|
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()
|
void io_buffer_t::read()
|
||||||
|
|
Loading…
Reference in a new issue