1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-15 04:32:24 +00:00

DtSvc/DtEncap: remove register keyword

This commit is contained in:
Jon Trulson 2018-06-27 14:55:20 -06:00
parent 11ad65226d
commit dbef83212a

View file

@ -150,11 +150,11 @@ static void root_object_init (object * UNUSED_PARM(p))
static object *root_clone (object *this_ptr, object *clone)
/*--------------------------------------------------------------------------+*/
{
register XeString orig = (XeString) this_ptr ;
register XeString copy ;
XeString orig = (XeString) this_ptr ;
XeString copy ;
register object_clasp o_class = this_ptr->class_ptr ;
register OSizeType size = o_class->object_size ;
object_clasp o_class = this_ptr->class_ptr ;
OSizeType size = o_class->object_size ;
if ( ! clone )
clone = (*(o_class->new_obj))(o_class) ;