From fcdebdee58ab17a5b7915c2b278b546f284a8db8 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Tue, 30 Dec 2014 19:57:34 -0600 Subject: [PATCH] Update: uncomment pipe detection code in return_code and fss_return_code Not sure why this was disabled, perhaps it was not implemented? At least, enable the variable. --- level_3/fss_return_code/c/main.c | 2 -- level_3/return_code/c/main.c | 2 -- 2 files changed, 4 deletions(-) diff --git a/level_3/fss_return_code/c/main.c b/level_3/fss_return_code/c/main.c index a450891..266212f 100644 --- a/level_3/fss_return_code/c/main.c +++ b/level_3/fss_return_code/c/main.c @@ -3,11 +3,9 @@ int main(const f_array_length argc, const f_string argv[]) { fss_return_code_data data = fss_return_code_data_initialize; - /* if (f_pipe_exists()) { data.process_pipe = f_true; } - */ return fss_return_code_main(argc, argv, &data); } diff --git a/level_3/return_code/c/main.c b/level_3/return_code/c/main.c index fba08ce..2476a69 100644 --- a/level_3/return_code/c/main.c +++ b/level_3/return_code/c/main.c @@ -3,11 +3,9 @@ int main(const f_array_length argc, const f_string argv[]) { return_code_data data = return_code_data_initialize; - /* if (f_pipe_exists()) { data.process_pipe = f_true; } - */ return return_code_main(argc, argv, &data); } -- 1.8.3.1