about summary refs log tree commit diff stats
path: root/044space_surround.cc
diff options
context:
space:
mode:
Diffstat (limited to '044space_surround.cc')
-rw-r--r--044space_surround.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/044space_surround.cc b/044space_surround.cc
index a8529adb..f3d8319c 100644
--- a/044space_surround.cc
+++ b/044space_surround.cc
@@ -45,8 +45,7 @@ int space_base(const reagent& x) {
 int space_base(const reagent& x, int space_index, int base) {
   if (space_index == 0)
     return base;
-  int result = space_base(x, space_index-1, get_or_insert(Memory, base+/*skip length*/1))+/*skip refcount*/1;
-  return result;
+  return space_base(x, space_index-1, get_or_insert(Memory, base+/*skip length*/1))+/*skip refcount*/1;
 }
 
 int space_index(const reagent& x) {