about summary refs log tree commit diff stats
path: root/071recipe.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-09-24 19:55:48 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-09-24 19:55:48 -0700
commitae08e30e8d57a1f1bbc0ba8a346a0aa6bcb512e9 (patch)
tree42500debf1840bb90a729a6173a1a026ce3ebede /071recipe.cc
parent2821a0a3cb126d406840659dcfc8f53302353012 (diff)
downloadmu-ae08e30e8d57a1f1bbc0ba8a346a0aa6bcb512e9.tar.gz
3413
Diffstat (limited to '071recipe.cc')
-rw-r--r--071recipe.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/071recipe.cc b/071recipe.cc
index f79b9461..6be95c4b 100644
--- a/071recipe.cc
+++ b/071recipe.cc
@@ -199,7 +199,7 @@ recipe from_reagent(const reagent& r) {
     return result_header;  // no products
   }
   read_products:
-  for (/*nada*/; curr && !curr->atom; curr=curr->right)
+  for (/*nada*/; curr && !curr->atom; curr = curr->right)
     result_header.products.push_back(next_recipe_reagent(curr->left));
   if (curr) {
     assert(curr->atom);