locks: print unsigned ino in /proc/locks

An ino is unsigned, so display it as such in /proc/locks.

Cc: stable@vger.kernel.org
Signed-off-by: Amir Goldstein <amir73il@gmail.com>
Signed-off-by: Jeff Layton <jlayton@kernel.org>

authored by Amir Goldstein and committed by Jeff Layton 98ca480a 46cf053e

Changed files
+1 -1
fs
+1 -1
fs/locks.c
··· 2853 2853 } 2854 2854 if (inode) { 2855 2855 /* userspace relies on this representation of dev_t */ 2856 - seq_printf(f, "%d %02x:%02x:%ld ", fl_pid, 2856 + seq_printf(f, "%d %02x:%02x:%lu ", fl_pid, 2857 2857 MAJOR(inode->i_sb->s_dev), 2858 2858 MINOR(inode->i_sb->s_dev), inode->i_ino); 2859 2859 } else {