set_report_path_field_properties error->warn
Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
parent
adaf73cb3a
commit
5824e44abf
|
|
@ -464,7 +464,7 @@ set_report_path_field_properties(const char *field_name,
|
||||||
if (field)
|
if (field)
|
||||||
field->setProperties(title, width, left_justify);
|
field->setProperties(title, width, left_justify);
|
||||||
else
|
else
|
||||||
sta->report()->error(1575, "unknown report path field %s", field_name);
|
sta->report()->warn(1575, "unknown report path field %s", field_name);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
@ -476,7 +476,7 @@ set_report_path_field_width(const char *field_name,
|
||||||
if (field)
|
if (field)
|
||||||
field->setWidth(width);
|
field->setWidth(width);
|
||||||
else
|
else
|
||||||
sta->report()->error(1576, "unknown report path field %s", field_name);
|
sta->report()->warn(1576, "unknown report path field %s", field_name);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue