diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-12-10 11:03:40 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-12-10 11:03:40 -0800 |
commit | 9737af15196380a1687d18a17d297ee17b45a83f (patch) | |
tree | 555445d8fbb5e814a8e9afb4b9bba78886455aed /xkbpath.c | |
parent | b67c058e2ccc27472b238a6b5dc5e4cd20f6d2bd (diff) |
Remove register keyword from variable declarations
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'xkbpath.c')
-rw-r--r-- | xkbpath.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |