Skip to content

Commit

Permalink
bluetooth: Fix rfcomm_sock_ioctl() build failure with debugging enabled.
Browse files Browse the repository at this point in the history
It's 'sock' not 'sk'.

Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
David S. Miller committed Dec 9, 2008
1 parent e421300 commit 6cf1a0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/bluetooth/rfcomm/sock.c
Original file line number Diff line number Diff line change
Expand Up @@ -792,7 +792,7 @@ static int rfcomm_sock_ioctl(struct socket *sock, unsigned int cmd, unsigned lon
#endif
int err;

BT_DBG("sk %p cmd %x arg %lx", sk, cmd, arg);
BT_DBG("sk %p cmd %x arg %lx", sock, cmd, arg);

err = bt_sock_ioctl(sock, cmd, arg);

Expand Down

0 comments on commit 6cf1a0f

Please sign in to comment.