Fix typo.

This commit is contained in:
Andrei Zmievski 2000-02-26 16:21:29 +00:00
parent 051a30bc65
commit e6146d6bf3

View file

@ -1928,7 +1928,7 @@ send_by_ref:
zend_str_tolower(class_name.value.str.val, class_name.value.str.len);
if (zend_hash_find(EG(class_table), class_name.value.str.val, class_name.value.str.len+1, (void **) &ce)==FAILURE) {
zend_error(E_ERROR, "Cannot instanciate non-existant class: %s", class_name.value.str.val);
zend_error(E_ERROR, "Cannot instantiate non-existant class: %s", class_name.value.str.val);
}
object_init_ex(&Ts[opline->result.u.var].tmp_var, ce);
Ts[opline->result.u.var].tmp_var.refcount=1;