]> Kevux Git Server - fll/commitdiff
Regression: Invalid syntax in fake program.
authorKevin Day <thekevinday@gmail.com>
Sat, 2 Apr 2022 03:53:45 +0000 (22:53 -0500)
committerKevin Day <thekevinday@gmail.com>
Sat, 2 Apr 2022 03:53:45 +0000 (22:53 -0500)
I thought I compiled this to confirm that the code was correct.
Apparently not.

Fix the syntax so that the code compiles.

level_3/fake/c/fake.c
level_3/fake/c/private-make-load_fakefile.c

index 3d61ebda19d8a1f5683703f4a00f59e0f7acae17..1ea27657e20d5be5df5c81240f41a228517c0a97 100644 (file)
@@ -340,7 +340,7 @@ extern "C" {
             break;
           }
 
-          data->main->signal_check = 0;
+          main->signal_check = 0;
         }
 
         if (F_status_is_error(status)) {
index 4a6171524f707faa1c2daf1e124b0f3a7d18b2ba..9a12fc0ecea7170d5eec1c7c1414d79e804c4a45 100644 (file)
@@ -88,7 +88,7 @@ extern "C" {
 
       f_fss_set_t settings = f_fss_set_t_initialize;
 
-      f_state_t state = macro_f_state_t_initialize(fake_common_allocation_large_d, fake_common_allocation_small_d, 0, &fll_program_standard_signal_state, (void *) data_make->data, 0);
+      f_state_t state = macro_f_state_t_initialize(fake_common_allocation_large_d, fake_common_allocation_small_d, 0, &fll_program_standard_signal_state, 0, (void *) data_make->data, 0);
 
       if (list_objects.used > data_make->fakefile.size) {
         macro_f_fss_nameds_t_resize((*status), data_make->fakefile, list_objects.used);