Commit 7020ebff authored by Alejandro Mery's avatar Alejandro Mery
Browse files

fex2bin: add verbose logs to stderr of detected entries

parent acea6b50
...@@ -124,8 +124,12 @@ static int parse_fex(FILE *in, const char *filename, struct script *script) ...@@ -124,8 +124,12 @@ static int parse_fex(FILE *in, const char *filename, struct script *script)
} else if (pe > p+1 && *p == '"' && pe[-1] == '"') { } else if (pe > p+1 && *p == '"' && pe[-1] == '"') {
/* string */ /* string */
p++; *--pe = '\0'; p++; *--pe = '\0';
if (script_string_entry_new(last_section, key, pe-p, p)) if (script_string_entry_new(last_section, key, pe-p, p)) {
errf("%s.%s = \"%.*s\"\n",
last_section->name, key,
(int)(pe-p), p);
continue; continue;
}
perror("malloc"); perror("malloc");
} else if (memcmp("port:P", p, 6) == 0) { } else if (memcmp("port:P", p, 6) == 0) {
...@@ -165,6 +169,8 @@ static int parse_fex(FILE *in, const char *filename, struct script *script) ...@@ -165,6 +169,8 @@ static int parse_fex(FILE *in, const char *filename, struct script *script)
errf("E: %s:%zu: value out of range %lld.\n", errf("E: %s:%zu: value out of range %lld.\n",
filename, line, v); filename, line, v);
} else if (script_single_entry_new(last_section, key, v)) { } else if (script_single_entry_new(last_section, key, v)) {
errf("%s.%s = %lld\n",
last_section->name, key, v);
continue; continue;
} }
} else { } else {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment