examples/dtwsm: remove register keyword
authorJon Trulson <jon@radscan.com>
Wed, 27 Jun 2018 19:16:04 +0000 (13:16 -0600)
committerJon Trulson <jon@radscan.com>
Thu, 28 Jun 2018 03:58:04 +0000 (21:58 -0600)
cde/examples/dtwsm/occupy.c
cde/examples/dtwsm/wsinfo.c

index 2c923aea8073004604093be3a4a03d44b7106e40..21d36c39cd81ee949215b66b185b8e35c43bd405 100644 (file)
@@ -275,8 +275,8 @@ Widget top;
 {
     Window root;
     Arg        args[10]; /*  arg list          */
-    register int n;    /*  arg count           */
-    register int i;
+    int n;     /*  arg count           */
+    int i;
     DtWsmWorkspaceInfo *pWsInfo;
     char *pchWs;
     Widget left = None;
@@ -350,7 +350,7 @@ Widget top;
 static void ShowWorkspaceOccupancy ()
 {
     Arg        args[10]; /*  arg list          */
-    register int n;    /*  arg count           */
+    int n;     /*  arg count           */
     int i,j;
     Atom *paWsIn = NULL;
     unsigned long numWsIn;
index 5a6724a2d9858a775e5c5659a33453b08f951bf3..47a5a19a171ecadb0f6fb15af27a2d7fe5f55014 100644 (file)
@@ -83,8 +83,8 @@ void main (argc,argv)
     Widget  top;
     XtAppContext app_context;
     Arg        args[10];
-    register int n;
-    register int i;
+    int n;
+    int i;
     XmString xms, xmsBlank;
 
     /*  
@@ -442,7 +442,7 @@ void main (argc,argv)
 static void ShowCurrentWorkspaceInfo ()
 {
     Arg        args[10]; /*  arg list          */
-    register int n;    /*  arg count           */
+    int n;     /*  arg count           */
     Atom aWs;
     int rval;
     Display *dpy;