1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-23 10:04:26 +00:00

avrdude: Add a Windows-aware fopen

This commit is contained in:
Vojtech Kral
2019-02-25 18:07:10 +01:00
parent a2ce4c00de
commit fba4d109c8
3 changed files with 11 additions and 5 deletions
+1 -1
View File
@@ -325,7 +325,7 @@ int read_config(const char * file)
FILE * f;
int r;
f = fopen(file, "r");
f = fopen_utf8(file, "r");
if (f == NULL) {
avrdude_message(MSG_INFO, "%s: can't open config file \"%s\": %s\n",
progname, file, strerror(errno));