Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions fsutils/inifile/inifile.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand All @@ -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;
}

Expand Down
Loading