Fixed a minor error in the plot command that is missing a value

in the print statement on detecting an invalid plot parameter
value name.
This commit is contained in:
Tim Edwards
2021-02-23 09:58:52 -05:00
parent 2e9c554f2c
commit 9a79a1eee2
3 changed files with 11 additions and 2 deletions
+2 -1
View File
@@ -538,7 +538,8 @@ PlotSetParam(name, value)
{
int j;
TxError("%s is not a supported plot type. Plot types are:\n");
TxError("%s is not a supported plot type. Plot types are:\n",
value);
for (j = 0 ; plotTypeNames[j] != NULL; j++)
{
TxError("\t%s\n", plotTypeNames[j]);