dtwm: remove register keyword

This commit is contained in:
Jon Trulson
2018-06-27 17:54:24 -06:00
parent 2d7c1db6fc
commit c1227cc629
13 changed files with 38 additions and 38 deletions

View File

@@ -105,8 +105,8 @@ char **argv;
Widget top;
XtAppContext app_context;
Arg args[10];
register int n;
register int i;
int n;
int i;
/*
* initialize toolkit
@@ -273,8 +273,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;
@@ -346,7 +346,7 @@ Widget top;
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;

View File

@@ -101,8 +101,8 @@ char **argv;
Widget top;
XtAppContext app_context;
Arg args[10];
register int n;
register int i;
int n;
int i;
XmString xms, xmsBlank;
/*
@@ -454,7 +454,7 @@ char **argv;
void ShowCurrentWorkspaceInfo ()
{
Arg args[10]; /* arg list */
register int n; /* arg count */
int n; /* arg count */
Atom aWs;
int rval;
Display *dpy;