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:
parent
11ad65226d
commit
dbef83212a
1 changed files with 4 additions and 4 deletions
|
@ -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) ;
|
||||
|
|
Loading…
Reference in a new issue