Skip to content

Commit ab285c8

Browse files
authored
config.c: tab->4space
1 parent a33a10b commit ab285c8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

common/lib/config.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -412,13 +412,13 @@ int init_config(size_t config_size) {
412412
// Load macros
413413
struct macro *arch_macro = ext_mem_alloc(sizeof(struct macro));
414414
strcpy(arch_macro->name, "ARCH");
415-
strcpy(arch_macro->value, current_arch());
415+
strcpy(arch_macro->value, current_arch());
416416
arch_macro->next = macros;
417417
macros = arch_macro;
418418

419419
struct macro *fw_type_macro = ext_mem_alloc(sizeof(struct macro));
420420
strcpy(fw_type_macro->name, "FW_TYPE");
421-
strcpy(fw_type_macro->value, current_firmware());
421+
strcpy(fw_type_macro->value, current_firmware());
422422
fw_type_macro->next = macros;
423423
macros = fw_type_macro;
424424

0 commit comments

Comments
 (0)