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 /utils.c | |
parent | b67c058e2ccc27472b238a6b5dc5e4cd20f6d2bd (diff) |
Remove register keyword from variable declarations
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'utils.c')
-rw-r--r-- | utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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++) { |