mirror of
https://github.com/RTimothyEdwards/magic.git
synced 2026-08-28 17:15:13 +02:00
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:
+2
-1
@@ -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]);
|
||||
|
||||
Reference in New Issue
Block a user