From 711e1faaa6f63aabb195804e4f5939a5593f2afa Mon Sep 17 00:00:00 2001 From: David Rose Date: Fri, 9 Nov 2007 21:38:13 +0000 Subject: [PATCH] fix error message to display the numbers that actually caused the problem --- direct/src/distributed/cDistributedSmoothNodeBase.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/direct/src/distributed/cDistributedSmoothNodeBase.cxx b/direct/src/distributed/cDistributedSmoothNodeBase.cxx index 90976ed0b3..09ab64148d 100644 --- a/direct/src/distributed/cDistributedSmoothNodeBase.cxx +++ b/direct/src/distributed/cDistributedSmoothNodeBase.cxx @@ -338,8 +338,8 @@ finish_send_update(DCPacker &packer) { if (packer.had_range_error()) { ostringstream error; error << "Node position out of range for DC file: " - << _node_path << " pos = " << _node_path.get_pos() - << " hpr = " << _node_path.get_hpr(); + << _node_path << " pos = " << _store_xyz + << " hpr = " << _store_hpr; nassert_raise(error.str()); } else {