summaryrefslogtreecommitdiff
path: root/apps/examples/smart/smart_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/examples/smart/smart_main.c')
-rw-r--r--apps/examples/smart/smart_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/examples/smart/smart_main.c b/apps/examples/smart/smart_main.c
index 83585cba4..d9e1819b5 100644
--- a/apps/examples/smart/smart_main.c
+++ b/apps/examples/smart/smart_main.c
@@ -552,7 +552,7 @@ static inline int smart_rdfile(FAR struct smart_filedesc_s *file)
printf("ERROR: Read past the end of file\n");
printf(" File name: %s\n", file->name);
printf(" File size: %d\n", file->len);
- printf(" Bytes read: %d\n", nbytesread);
+ printf(" Bytes read: %ld\n", (long)nbytesread);
close(fd);
return ERROR;
}