]> Kevux Git Server - fll/commitdiff
Cleanup: remove extra parameter in printf().
authorKevin Day <thekevinday@gmail.com>
Fri, 6 Nov 2020 04:45:00 +0000 (22:45 -0600)
committerKevin Day <thekevinday@gmail.com>
Fri, 6 Nov 2020 04:45:00 +0000 (22:45 -0600)
There is only a single '%c' so the second parameter is ignored.

level_3/fss_basic_list_read/c/fss_basic_list_read.c
level_3/fss_basic_read/c/fss_basic_read.c
level_3/fss_extended_list_read/c/fss_extended_list_read.c
level_3/fss_extended_read/c/fss_extended_read.c
level_3/iki_read/c/iki_read.c
level_3/iki_write/c/iki_write.c

index ec3a238cd1901451b9368387ebea61d19012b559..48635404fecf8d7a2d1ce7da915ab7097add39cc 100644 (file)
@@ -39,7 +39,7 @@ extern "C" {
 
     fl_color_print(output.stream, context.set.important, " Notes:");
 
-    fprintf(output.stream, "%c", f_string_eol[0], f_string_eol[0]);
+    fprintf(output.stream, "%c", f_string_eol[0]);
 
     fprintf(output.stream, "  This program will print the content associated with the given object and content data based on the FSS-0002 Basic List standard.%c", f_string_eol[0]);
 
index cbdd6d182dd9cd815a2ba3877f2c5a0276ca3f29..0d1155860d3697386e4f5db03e4a731773c459f5 100644 (file)
@@ -39,7 +39,7 @@ extern "C" {
 
     fl_color_print(output.stream, context.set.important, " Notes:");
 
-    fprintf(output.stream, "%c", f_string_eol[0], f_string_eol[0]);
+    fprintf(output.stream, "%c", f_string_eol[0]);
 
     fprintf(output.stream, "  This program will print the content associated with the given object and content data based on the FSS-0000 Basic standard.%c", f_string_eol[0]);
 
index f87c779a6232e37c582870893b640e7d5e771e17..24c1758dab193c4e798054f61cb9cd5a66247c1f 100644 (file)
@@ -39,7 +39,7 @@ extern "C" {
 
     fl_color_print(output.stream, context.set.important, " Notes:");
 
-    fprintf(output.stream, "%c", f_string_eol[0], f_string_eol[0]);
+    fprintf(output.stream, "%c", f_string_eol[0]);
 
     fprintf(output.stream, "  This program will print the content associated with the given object and content data based on the FSS-0002 Basic List standard.%c", f_string_eol[0]);
 
index 0df4157b3fbbd6a11699d6b037224795a5768a43..bf05f21901f524717ed5001b5273031aaa3a9578 100644 (file)
@@ -39,7 +39,7 @@ extern "C" {
 
     fl_color_print(output.stream, context.set.important, " Notes:");
 
-    fprintf(output.stream, "%c", f_string_eol[0], f_string_eol[0]);
+    fprintf(output.stream, "%c", f_string_eol[0]);
 
     fprintf(output.stream, "  This program will print the content associated with the given object and content data based on the FSS-0001 Extended standard.%c", f_string_eol[0]);
 
index 4e391890d85638e6e435a49acee1d922d2ab94f7..ac7906d07a415e6dcbd51a8cc65e811d2aa5ee06 100644 (file)
@@ -42,7 +42,7 @@ extern "C" {
 
     fl_color_print(output.stream, context.set.important, " Notes:");
 
-    fprintf(output.stream, "%c", f_string_eol[0], f_string_eol[0]);
+    fprintf(output.stream, "%c", f_string_eol[0]);
 
     fprintf(output.stream, "  This program will find and print variables, vocabularies, or content following the IKI standard, without focusing on any particular vocabulary specification.%c", f_string_eol[0]);
 
index 18a5bb035ca38c7abac5f687e86c01a2674bfdf3..1fd329f44b80c4ddc131d7f2e7a5b54855f4a3bf 100644 (file)
@@ -32,7 +32,7 @@ extern "C" {
 
     fl_color_print(output.stream, context.set.important, " Notes:");
 
-    fprintf(output.stream, "%c", f_string_eol[0], f_string_eol[0]);
+    fprintf(output.stream, "%c", f_string_eol[0]);
 
     fprintf(output.stream, "  This program will accept object and content strings to generate an IKI string, such as: ");
     fl_color_print(output.stream, context.set.notable, "object:\"content\"");