Fix bug 795 858, printing "(null)" instead of empty string ""
This commit is contained in:
parent
cf76c25599
commit
01b8416f24
1 changed files with 1 additions and 1 deletions
|
|
@ -1847,7 +1847,7 @@ void value_t::print(std::ostream& _out,
|
||||||
|
|
||||||
switch (type()) {
|
switch (type()) {
|
||||||
case VOID:
|
case VOID:
|
||||||
out << "(null)";
|
out << "";
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case BOOLEAN:
|
case BOOLEAN:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue