summaryrefslogtreecommitdiff
path: root/src/library.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/library.c')
-rw-r--r--src/library.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/library.c b/src/library.c
index 83527c4..c43d190 100644
--- a/src/library.c
+++ b/src/library.c
@@ -180,7 +180,6 @@ _XcursorThemeInherits (const char *full)
if (!strncmp (line, "Inherits", 8))
{
char *l = line + 8;
- char *r;
while (*l == ' ') l++;
if (*l != '=') continue;
l++;
@@ -188,7 +187,7 @@ _XcursorThemeInherits (const char *full)
result = malloc (strlen (l) + 1);
if (result)
{
- r = result;
+ char *r = result;
while (*l)
{
while (XcursorSep(*l) || XcursorWhite (*l)) l++;
@@ -561,15 +560,13 @@ int
XcursorLibraryShape (const char *library)
{
int low, high;
- int mid;
- int c;
low = 0;
high = NUM_STANDARD_NAMES - 1;
while (low < high - 1)
{
- mid = (low + high) >> 1;
- c = strcmp (library, STANDARD_NAME (mid));
+ int mid = (low + high) >> 1;
+ int c = strcmp (library, STANDARD_NAME (mid));
if (c == 0)
return (mid << 1);
if (c > 0)