Skip to content

Commit 450c26b

Browse files
Matsievskiy S.VSergey Matsievskiy
authored andcommitted
Fix wrong arguments to fatal macro
1 parent 0aae775 commit 450c26b

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
@@ -192,7 +192,7 @@ bool json_fill_fru_area_fields(json_object *jso, int count,
192192
const char *type = json_object_get_string(typefield);
193193
const char *val = json_object_get_string(valfield);
194194
if (!strcmp("binary", type)) {
195-
fatal(1, "Binary format not yet implemented");
195+
fatal("Binary format not yet implemented");
196196
} else if (!strcmp("bcdplus", type)) {
197197
fields[i]->type = FIELD_TYPE_BCDPLUS;
198198
} else if (!strcmp("6bitascii", type)) {

0 commit comments

Comments
 (0)