We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a33a10b commit ab285c8Copy full SHA for ab285c8
1 file changed
common/lib/config.c
@@ -412,13 +412,13 @@ int init_config(size_t config_size) {
412
// Load macros
413
struct macro *arch_macro = ext_mem_alloc(sizeof(struct macro));
414
strcpy(arch_macro->name, "ARCH");
415
- strcpy(arch_macro->value, current_arch());
+ strcpy(arch_macro->value, current_arch());
416
arch_macro->next = macros;
417
macros = arch_macro;
418
419
struct macro *fw_type_macro = ext_mem_alloc(sizeof(struct macro));
420
strcpy(fw_type_macro->name, "FW_TYPE");
421
- strcpy(fw_type_macro->value, current_firmware());
+ strcpy(fw_type_macro->value, current_firmware());
422
fw_type_macro->next = macros;
423
macros = fw_type_macro;
424
0 commit comments