Index: uspace/app/bdsh/cmds/modules/ls/ls.c
===================================================================
--- uspace/app/bdsh/cmds/modules/ls/ls.c	(revision bffd91fd0fc8c07277993a9c0c1e5c3e3cef730d)
+++ uspace/app/bdsh/cmds/modules/ls/ls.c	(revision 516ff92eec3001ee20baaf6f01de87b1ffef0b48)
@@ -51,8 +51,8 @@
 static char *cmdname = "ls";
 
-static inline uint64_t flen(const char *f)
+static inline off_t flen(const char *f)
 {
 	int fd;
-	uint64_t size;
+	off_t size;
 
 	fd = open(f, O_RDONLY);
@@ -146,5 +146,5 @@
 static void ls_print_file(const char *f)
 {
-	printf("%-40s\t%u\n", f, flen(f));
+	printf("%-40s\t%llu\n", f, (long long) flen(f));
 
 	return;
