summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/shell
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2019-01-10 09:05:49 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2019-01-10 09:06:56 +0100
commit7bde91bd5fd20e2c0c91193728c793e0675bdc03 (patch)
tree396a0aa9a2b80eafb01eb9671c57bd17c7a62f43 /cpukit/libmisc/shell
parentpsxconfig01: Fix pre-processor conditions (diff)
downloadrtems-7bde91bd5fd20e2c0c91193728c793e0675bdc03.tar.bz2
Fix format warnings due to ino_t changes
Diffstat (limited to 'cpukit/libmisc/shell')
-rw-r--r--cpukit/libmisc/shell/main_rm.c6
-rw-r--r--cpukit/libmisc/shell/print-ls.c6
2 files changed, 8 insertions, 4 deletions
diff --git a/cpukit/libmisc/shell/main_rm.c b/cpukit/libmisc/shell/main_rm.c
index c8dabe73f4..ab712d59f9 100644
--- a/cpukit/libmisc/shell/main_rm.c
+++ b/cpukit/libmisc/shell/main_rm.c
@@ -48,6 +48,7 @@ __FBSDID("$FreeBSD: src/bin/rm/rm.c,v 1.58 2006/10/31 02:22:36 delphij Exp $");
#endif
#include <rtems.h>
+#include <rtems/inttypes.h>
#include <rtems/shell.h>
#include <rtems/shellconfig.h>
#define __need_getopt_newlib
@@ -493,8 +494,9 @@ rm_overwrite_rm(rtems_shell_rm_globals* globals, char *file, struct stat *sbp)
if (!S_ISREG(sbp->st_mode))
return (1);
if (sbp->st_nlink > 1 && !fflag) {
- warnx("%s (inode %lu): not overwritten due to multiple links",
- file, sbp->st_ino);
+ warnx("%s (inode %" PRIuino_t
+ "): not overwritten due to multiple links", file,
+ sbp->st_ino);
return (0);
}
if ((fd = open(file, O_WRONLY, 0)) == -1)
diff --git a/cpukit/libmisc/shell/print-ls.c b/cpukit/libmisc/shell/print-ls.c
index 75876b7a7d..15702b4931 100644
--- a/cpukit/libmisc/shell/print-ls.c
+++ b/cpukit/libmisc/shell/print-ls.c
@@ -50,6 +50,7 @@ __RCSID("$NetBSD: print.c,v 1.40 2004/11/17 17:00:00 mycroft Exp $");
#include <inttypes.h>
#include <rtems.h>
+#include <rtems/inttypes.h>
#include <rtems/libio.h>
#include <sys/param.h>
@@ -135,7 +136,8 @@ printlong(rtems_shell_ls_globals* globals, DISPLAY *dp)
continue;
sp = p->fts_statp;
if (f_inode)
- (void)printf("%*lu ", dp->s_inode, sp->st_ino);
+ (void)printf("%*" PRIuino_t " ", dp->s_inode,
+ sp->st_ino);
if (f_size && !f_humanize) {
(void)printf("%*llu ", dp->s_block,
(unsigned long long)howmany(sp->st_blocks, blocksize));
@@ -385,7 +387,7 @@ printaname(rtems_shell_ls_globals* globals,
sp = p->fts_statp;
chcnt = 0;
if (f_inode)
- chcnt += printf("%*lu ", inodefield, sp->st_ino);
+ chcnt += printf("%*" PRIuino_t " ", inodefield, sp->st_ino);
if (f_size) {
#if RTEMS_REMOVED
if (f_humanize) {