From 4a48bedcd1d708a43d43dc6259a4e45c52ea3d00 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sun, 3 Dec 2017 23:25:40 -0800 Subject: 4134 - 'input' = 'ingredient' --- html/087file.cc.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'html/087file.cc.html') diff --git a/html/087file.cc.html b/html/087file.cc.html index 25952ce2..a42e29b4 100644 --- a/html/087file.cc.html +++ b/html/087file.cc.html @@ -172,7 +172,7 @@ if ('onhashchange' in window) { 111 long long int x = static_cast<long long int>(ingredients.at(0).at(0)); 112 FILE* f = reinterpret_cast<FILE*>(x); 113 if (f == NULL) { -114 ¦ raise << maybe(current_recipe_name()) << "can't read from null file in '" << to_string(current_instruction()) << "'\n" << end(); +114 ¦ raise << maybe(current_recipe_name()) << "can't read from null file in '" << to_string(current_instruction()) << "'\n" << end(); 115 ¦ break; 116 } 117 products.resize(2); @@ -192,7 +192,7 @@ if ('onhashchange' in window) { 131 ¦ break; 132 } 133 if (ferror(f)) { -134 ¦ raise << maybe(current_recipe_name()) << "couldn't read from file in '" << to_string(current_instruction()) << "'\n" << end(); +134 ¦ raise << maybe(current_recipe_name()) << "couldn't read from file in '" << to_string(current_instruction()) << "'\n" << end(); 135 ¦ raise << " errno: " << errno << '\n' << end(); 136 ¦ break; 137 } @@ -232,7 +232,7 @@ if ('onhashchange' in window) { 171 long long int x = static_cast<long long int>(ingredients.at(0).at(0)); 172 FILE* f = reinterpret_cast<FILE*>(x); 173 if (f == NULL) { -174 ¦ raise << maybe(current_recipe_name()) << "can't write to null file in '" << to_string(current_instruction()) << "'\n" << end(); +174 ¦ raise << maybe(current_recipe_name()) << "can't write to null file in '" << to_string(current_instruction()) << "'\n" << end(); 175 ¦ break; 176 } 177 if (feof(f)) break; @@ -244,7 +244,7 @@ if ('onhashchange' in window) { 183 char c = static_cast<char>(y); 184 putc(c, f); // todo: unicode 185 if (ferror(f)) { -186 ¦ raise << maybe(current_recipe_name()) << "couldn't write to file in '" << to_string(current_instruction()) << "'\n" << end(); +186 ¦ raise << maybe(current_recipe_name()) << "couldn't write to file in '" << to_string(current_instruction()) << "'\n" << end(); 187 ¦ raise << " errno: " << errno << '\n' << end(); 188 ¦ break; 189 } -- cgit 1.4.1-2-gfad0