mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
fix compile warning for fsutils inifile.c
Signed-off-by: liuwei35 <liuwei35@xiaomi.com>
This commit is contained in:
parent
0109ab39ec
commit
3e54ea0aae
1 changed files with 2 additions and 2 deletions
|
|
@ -603,7 +603,7 @@ long inifile_read_integer(INIHANDLE handle,
|
|||
|
||||
/* Assume failure to find the requested value */
|
||||
|
||||
iniinfo("section=\"%s\" variable=\"%s\" defvalue=%d\n",
|
||||
iniinfo("section=\"%s\" variable=\"%s\" defvalue=%ld\n",
|
||||
section, variable, defvalue);
|
||||
|
||||
/* Get the value as a string first */
|
||||
|
|
@ -624,7 +624,7 @@ long inifile_read_integer(INIHANDLE handle,
|
|||
|
||||
/* Return the value that we found. */
|
||||
|
||||
iniinfo("Returning %d\n", ret);
|
||||
iniinfo("Returning %ld\n", ret);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue