aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@b32723a9-ab3a-4a60-88e2-2e5d99d7c17a>2009-05-18 09:21:20 +0000
committertradke <tradke@b32723a9-ab3a-4a60-88e2-2e5d99d7c17a>2009-05-18 09:21:20 +0000
commit18b3328ab8d565214a9a63bdac5e923045a5358c (patch)
tree43e6357f389a54a8fcef4227133b376856cac853
parent4505ff65b06407757e1c547a91e83226f7b4c1b2 (diff)
bugfix: remove correct key from options list table in routine SetOutputVar()
so that no false warning is issued anymore about an option with unrecognized key 'reductions' git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/IOUtil/trunk@270 b32723a9-ab3a-4a60-88e2-2e5d99d7c17a
-rw-r--r--src/Utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Utils.c b/src/Utils.c
index 23ebba8..10de8c8 100644
--- a/src/Utils.c
+++ b/src/Utils.c
@@ -1053,7 +1053,7 @@ static void SetOutputVar (int vindex, const char *optstring, void *arg)
"Option 'reductions' will be ignored for %s output "
"of variable '%s'", info->method_name, fullname);
}
- Util_TableDeleteKey (table, "compression_level");
+ Util_TableDeleteKey (table, "reductions");
}
/* warn about unrecognized options */