summaryrefslogtreecommitdiff
path: root/utils.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 /utils.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 'utils.c')
-rw-r--r--utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils.c b/utils.c
index cba6fec..96f1702 100644
--- a/utils.c
+++ b/utils.c
@@ -328,7 +328,7 @@ uStrCaseCmp(const char *str1, const char *str2)
{
char buf1[512], buf2[512];
char c, *s;
- register int n;
+ int n;
for (n = 0, s = buf1; (c = *str1++); n++)
{