]> Kevux Git Server - fll/commitdiff
Bugfix: use correct variable name.
authorKevin Day <thekevinday@gmail.com>
Sat, 26 Sep 2020 21:06:21 +0000 (16:06 -0500)
committerKevin Day <thekevinday@gmail.com>
Sat, 26 Sep 2020 21:06:21 +0000 (16:06 -0500)
level_2/fll_error/c/error.c

index ba7ed8ab70336aed0625a908dc79d35a370ad2c4..b3946d7710f3185598e6539297bfed9f4e396686 100644 (file)
@@ -112,7 +112,7 @@ extern "C" {
 
     if (status == F_file_open) {
       fl_color_print(error.to.stream, error.context, "%s%sUnable to open the file '", error.context.before->string, error.prefix ? error.prefix : "");
-      fl_color_print(error.to.stream, error.notable, "%s", file_name);
+      fl_color_print(error.to.stream, error.notable, "%s", name);
       fl_color_print(error.to.stream, error.context, "'.");
       fprintf(error.to.stream, "%c", f_string_eol[0]);
 
@@ -121,8 +121,8 @@ extern "C" {
 
     if (status == F_file_descriptor) {
       fl_color_print(error.to.stream, error.context, "%s%sFile descriptor error while trying to open the file '", error.context.before->string, error.prefix ? error.prefix : "");
-      fl_color_print(error.to.stream.to.stream, error.notable, "%s", file_name);
-      fl_color_print(stream, error.context, "'.");
+      fl_color_print(error.to.stream, error.notable, "%s", name);
+      fl_color_print(error.to.stream, error.context, "'.");
       fprintf(error.to.stream, "%c", f_string_eol[0]);
 
       return F_false;
@@ -130,7 +130,7 @@ extern "C" {
 
     if (status == F_number_underflow) {
       fl_color_print(error.to.stream, error.context, "%s%sInteger underflow while trying to buffer the file '", error.context.before->string, error.prefix ? error.prefix : "");
-      fl_color_print(error.to.stream, error.notable, "%s", file_name);
+      fl_color_print(error.to.stream, error.notable, "%s", name);
       fl_color_print(error.to.stream, error.context, "'.");
       fprintf(error.to.stream, "%c", f_string_eol[0]);