about summary refs log tree commit diff stats
path: root/043space.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-08-17 12:18:27 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-08-17 12:18:27 -0700
commite951ecf5596121f244eb8188d1f8ed25afb2b858 (patch)
treedea7c6ae0ec96674ec3ace7d812f4fb943581387 /043space.cc
parent75ab8732386096a77113514f767e134e42a5435f (diff)
downloadmu-e951ecf5596121f244eb8188d1f8ed25afb2b858.tar.gz
3213
Diffstat (limited to '043space.cc')
-rw-r--r--043space.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/043space.cc b/043space.cc
index 3a37dc1d..d6204b39 100644
--- a/043space.cc
+++ b/043space.cc
@@ -55,9 +55,8 @@ absolutize(x);
 void absolutize(reagent& x) {
   if (is_raw(x) || is_dummy(x)) return;
   if (x.name == "default-space") return;
-  if (!x.initialized) {
+  if (!x.initialized)
     raise << to_original_string(current_instruction()) << ": reagent not initialized: '" << x.original_string << "'\n" << end();
-  }
   x.set_value(address(x.value, space_base(x)));
   x.properties.push_back(pair<string, string_tree*>("raw", NULL));
   assert(is_raw(x));