Skip to content
Snippets Groups Projects
Commit f87b056d authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Print the correct .ini filename where ptrs are saved

was printing the filename in uppercase if configured as such
parent 6fa958e9
No related branches found
No related tags found
No related merge requests found
......@@ -418,9 +418,9 @@ for(sub in area) {
ini_file = new File(ini_fname);
if(ini_file.open("r")) {
export_ptr=ini_file.iniGetValue("NewsLink","export_ptr",export_ptr);
printf("%s.ini export ptr: %ld\r\n",sub,export_ptr);
printf("%s export ptr: %ld\r\n",file_getname(ini_fname), export_ptr);
import_ptr=ini_file.iniGetValue("NewsLink","import_ptr",import_ptr);
printf("%s.ini import ptr: %ld\r\n",sub,import_ptr);
printf("%s import ptr: %ld\r\n",file_getname(ini_fname),import_ptr);
ini_file.close();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment