summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/Varspaceval.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/Varspaceval.pm b/common/Varspaceval.pm
index 3295426c..97d3287b 100644
--- a/common/Varspaceval.pm
+++ b/common/Varspaceval.pm
@@ -68,7 +68,7 @@ sub commit {
print STDERR "File $file will be created\n";
# FIXME: why "=" here but " " just above?
foreach (keys %$hash) {
- $output .= defined $hash->{$_} ? $_ . "=" . $hash->{$_} . "\n" : $_ . "=\n";
+ $output .= $_ . "=" . $hash->{$_} . "\n";
}
}