Fix oops recovery in xdprval()

Failed to print the separator, which could run fields together.
This commit is contained in:
Markus Armbruster 2008-03-03 21:40:22 +01:00
parent 504f035450
commit f3e9526472

View file

@ -143,7 +143,7 @@ xdprval(struct valstr *val, char *sep)
break;
default:
CANT_REACH();
pr("0");
pr("%snil", sep);
}
return " ";
}