We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0109ab3 commit 3e54ea0Copy full SHA for 3e54ea0
fsutils/inifile/inifile.c
@@ -603,7 +603,7 @@ long inifile_read_integer(INIHANDLE handle,
603
604
/* Assume failure to find the requested value */
605
606
- iniinfo("section=\"%s\" variable=\"%s\" defvalue=%d\n",
+ iniinfo("section=\"%s\" variable=\"%s\" defvalue=%ld\n",
607
section, variable, defvalue);
608
609
/* Get the value as a string first */
@@ -624,7 +624,7 @@ long inifile_read_integer(INIHANDLE handle,
624
625
/* Return the value that we found. */
626
627
- iniinfo("Returning %d\n", ret);
+ iniinfo("Returning %ld\n", ret);
628
return ret;
629
}
630
0 commit comments