about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-08-14 05:06:39 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-08-14 05:06:39 -0700
commitfda86efe517b7086c0ec7601462aa119b2cba1a1 (patch)
treece7a99f771ea03f3f321241cd0b99e8c2aa7de21
parentf4eee01a6bcb752638b16da0a92d6ba4ae01ef28 (diff)
downloadmu-fda86efe517b7086c0ec7601462aa119b2cba1a1.tar.gz
3185
-rw-r--r--087file.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/087file.cc b/087file.cc
index af719695..6e9cc4ad 100644
--- a/087file.cc
+++ b/087file.cc
@@ -97,7 +97,7 @@ case _READ_FROM_FILE: {
   }
   char c = getc(f);  // todo: unicode
   if (ferror(f)) {
-    raise << maybe(current_recipe_name()) << "couldn't read to file in '" << to_string(current_instruction()) << "'\n" << end();
+    raise << maybe(current_recipe_name()) << "couldn't read from file in '" << to_string(current_instruction()) << "'\n" << end();
     raise << "  errno: " << errno << '\n' << end();
     break;
   }