summaryrefslogtreecommitdiffstats
path: root/toolbox
diff options
context:
space:
mode:
authorMark Salyzyn <salyzyn@google.com>2014-03-14 13:43:10 -0700
committerMark Salyzyn <salyzyn@google.com>2014-03-14 13:47:16 -0700
commit4727c7711ea93dd670b3cd5882ce01ff6debf2a6 (patch)
tree3fe72da3e8c64b122b272c19f283220fd06f9b13 /toolbox
parent3b8de6705bb5c77b6f459fd6dd394ef606228a05 (diff)
downloadsystem_core-4727c7711ea93dd670b3cd5882ce01ff6debf2a6.zip
system_core-4727c7711ea93dd670b3cd5882ce01ff6debf2a6.tar.gz
system_core-4727c7711ea93dd670b3cd5882ce01ff6debf2a6.tar.bz2
toolbox: ls: 64 bit compile warnings
Change-Id: Ia538c7177f8d5cf2c1f0efb5b575da6527c13968
Diffstat (limited to 'toolbox')
-rw-r--r--toolbox/ls.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/toolbox/ls.c b/toolbox/ls.c
index 3cc5bb2..06910ee 100644
--- a/toolbox/ls.c
+++ b/toolbox/ls.c
@@ -137,7 +137,7 @@ static int listfile_size(const char *path, const char *filename, struct stat *s,
/* blocks are 512 bytes, we want output to be KB */
if ((flags & LIST_SIZE) != 0) {
- printf("%lld ", s->st_blocks / 2);
+ printf("%lld ", (long long)s->st_blocks / 2);
}
if ((flags & LIST_CLASSIFY) != 0) {
@@ -205,7 +205,7 @@ static int listfile_long(const char *path, struct stat *s, int flags)
break;
case S_IFREG:
printf("%s %-8s %-8s %8lld %s %s\n",
- mode, user, group, s->st_size, date, name);
+ mode, user, group, (long long)s->st_size, date, name);
break;
case S_IFLNK: {
char linkto[256];
@@ -321,7 +321,7 @@ static int listfile(const char *dirname, const char *filename, int flags)
}
if(flags & LIST_INODE) {
- printf("%8llu ", s.st_ino);
+ printf("%8llu ", (unsigned long long)s.st_ino);
}
if ((flags & LIST_MACLABEL) != 0) {