From 8ba32a8c16cf339028227ad5929166b6f9db91aa Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Thu, 22 Jul 2021 15:40:39 +0800 Subject: [PATCH] Fix the printf warning after blkcnt_t change Signed-off-by: Xiang Xiao --- fsutils/mkfatfs/mkfatfs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fsutils/mkfatfs/mkfatfs.c b/fsutils/mkfatfs/mkfatfs.c index b7aa323b6..2466e91a7 100644 --- a/fsutils/mkfatfs/mkfatfs.c +++ b/fsutils/mkfatfs/mkfatfs.c @@ -1,5 +1,5 @@ /**************************************************************************** - * apps/fsutils/mkfatfs/writefat.c + * apps/fsutils/mkfatfs/mkfatfs.c * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with @@ -154,8 +154,8 @@ static inline int mkfatfs_getgeometry(FAR struct fat_format_s *fmt, if (fmt->ff_nsectors > geometry.geo_nsectors) { ferr("ERROR: User maxblocks (%" PRId32 - ") exceeds blocks on device (%" PRIu32 ")\n", - fmt->ff_nsectors, geometry.geo_nsectors); + ") exceeds blocks on device (%ju)\n", + fmt->ff_nsectors, (uintmax_t)geometry.geo_nsectors); return -EINVAL; }