Skip to content

Commit b4428e6

Browse files
author
Matsievskiy S.V
committed
Fix wrong arguments to fatal macro
1 parent 40578b7 commit b4428e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frugen.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ bool json_fill_fru_area_fields(json_object *jso, int count,
231231
const char *type = json_object_get_string(typefield);
232232
const char *val = json_object_get_string(valfield);
233233
if (!strcmp("binary", type)) {
234-
fatal(1, "Binary format not yet implemented");
234+
fatal("Binary format not yet implemented");
235235
} else if (!strcmp("bcdplus", type)) {
236236
fields[i]->type = FIELD_TYPE_BCDPLUS;
237237
} else if (!strcmp("6bitascii", type)) {

0 commit comments

Comments
 (0)