Browse Source

clarify warning message

David Rose 22 years ago
parent
commit
b43964e24d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      direct/src/dcparser/dcField.cxx

+ 1 - 1
direct/src/dcparser/dcField.cxx

@@ -130,7 +130,7 @@ pack_args(Datagram &datagram, PyObject *sequence) const {
   PyObject *str = PyObject_Str(tuple);
   
   ostringstream strm;
-  strm << "Incorrect arguments or value too large on field: " << get_name()
+  strm << "Incorrect arguments or value out of range on field: " << get_name()
        << PyString_AsString(str);
 
   Py_DECREF(str);