Fix a warning, print the pointer to the mutex instead of implying a cast of the address of the pointer to an int.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25339 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
5fce1ce7c0
commit
a2e55dcc0c
@ -1866,7 +1866,7 @@ dump_tty_struct(struct tty& tty)
|
||||
kprintf(" open_count: %ld\n", tty.open_count);
|
||||
kprintf(" select_pool: %p\n", tty.select_pool);
|
||||
kprintf(" pending_eof: %lu\n", tty.pending_eof);
|
||||
kprintf(" lock: %ld\n", &tty.lock);
|
||||
kprintf(" lock: %p\n", tty.lock);
|
||||
|
||||
kprintf(" input_buffer:\n");
|
||||
kprintf(" first: %ld\n", tty.input_buffer.first);
|
||||
|
Loading…
Reference in New Issue
Block a user