summaryrefslogtreecommitdiff
path: root/xkbpath.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2022-12-10 11:03:40 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2022-12-10 11:03:40 -0800
commit9737af15196380a1687d18a17d297ee17b45a83f (patch)
tree555445d8fbb5e814a8e9afb4b9bba78886455aed /xkbpath.c
parentb67c058e2ccc27472b238a6b5dc5e4cd20f6d2bd (diff)
downloadxorg-app-xkbcomp-9737af15196380a1687d18a17d297ee17b45a83f.tar.gz
Remove register keyword from variable declarations
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'xkbpath.c')
-rw-r--r--xkbpath.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xkbpath.c b/xkbpath.c
index 8a5e555..9f620e6 100644
--- a/xkbpath.c
+++ b/xkbpath.c
@@ -178,7 +178,7 @@ XkbAddDefaultDirectoriesToPath(void)
void
XkbClearIncludePath(void)
{
- register int i;
+ int i;
if (szPath > 0)
{
@@ -376,7 +376,7 @@ XkbFindFileInCache(char *name, unsigned type, char **pathRtrn)
FILE *
XkbFindFileInPath(char *name, unsigned type, char **pathRtrn)
{
- register int i;
+ int i;
FILE *file = NULL;
int nameLen, typeLen, pathLen;
char buf[PATH_MAX], *typeDir;