From dbef83212a988056efd7eefdb3ea5976d90412d1 Mon Sep 17 00:00:00 2001 From: Jon Trulson Date: Wed, 27 Jun 2018 14:55:20 -0600 Subject: [PATCH] DtSvc/DtEncap: remove register keyword --- cde/lib/DtSvc/DtEncap/scoop.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cde/lib/DtSvc/DtEncap/scoop.c b/cde/lib/DtSvc/DtEncap/scoop.c index 5af0e9c5..a83ab2cf 100644 --- a/cde/lib/DtSvc/DtEncap/scoop.c +++ b/cde/lib/DtSvc/DtEncap/scoop.c @@ -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) ; -- 2.25.1