summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2022-04-21 11:17:12 +0200
committerSimon Ser <contact@emersion.fr>2022-05-23 08:59:05 +0000
commit21394fd5f77dc84eb3bcf3ba3fcd74e69393d610 (patch)
treec68526259c786ef71d6593bb5f8436a4dd5c80de
parent315126d3bd9291d4d4c7bf316b9e5a3f694402c9 (diff)
downloadwayland-21394fd5f77dc84eb3bcf3ba3fcd74e69393d610.tar.gz
cursor: fix spacing around conditions and loops
Signed-off-by: Simon Ser <contact@emersion.fr>
-rw-r--r--cursor/xcursor.c86
1 files changed, 33 insertions, 53 deletions
diff --git a/cursor/xcursor.c b/cursor/xcursor.c
index acf58b1..4cbdead 100644
--- a/cursor/xcursor.c
+++ b/cursor/xcursor.c
@@ -330,8 +330,7 @@ _XcursorReadFileHeader(XcursorFile *file)
fileHeader->header = head.header;
fileHeader->version = head.version;
fileHeader->ntoc = head.ntoc;
- for (n = 0; n < fileHeader->ntoc; n++)
- {
+ for (n = 0; n < fileHeader->ntoc; n++) {
if (!_XcursorReadUInt(file, &fileHeader->tocs[n].type))
break;
if (!_XcursorReadUInt(file, &fileHeader->tocs[n].subtype))
@@ -339,8 +338,7 @@ _XcursorReadFileHeader(XcursorFile *file)
if (!_XcursorReadUInt(file, &fileHeader->tocs[n].position))
break;
}
- if (n != fileHeader->ntoc)
- {
+ if (n != fileHeader->ntoc) {
_XcursorFileHeaderDestroy(fileHeader);
return NULL;
}
@@ -398,18 +396,16 @@ _XcursorFindBestSize(XcursorFileHeader *fileHeader,
if (!fileHeader || !nsizesp)
return 0;
- for (n = 0; n < fileHeader->ntoc; n++)
- {
+ for (n = 0; n < fileHeader->ntoc; n++) {
if (fileHeader->tocs[n].type != XCURSOR_IMAGE_TYPE)
continue;
thisSize = fileHeader->tocs[n].subtype;
- if (!bestSize || dist(thisSize, size) < dist(bestSize, size))
- {
+ if (!bestSize || dist(thisSize, size) < dist(bestSize, size)) {
bestSize = thisSize;
nsizes = 1;
- }
- else if (thisSize == bestSize)
+ } else if (thisSize == bestSize) {
nsizes++;
+ }
}
*nsizesp = nsizes;
return bestSize;
@@ -426,8 +422,7 @@ _XcursorFindImageToc(XcursorFileHeader *fileHeader,
if (!fileHeader)
return 0;
- for (toc = 0; toc < fileHeader->ntoc; toc++)
- {
+ for (toc = 0; toc < fileHeader->ntoc; toc++) {
if (fileHeader->tocs[toc].type != XCURSOR_IMAGE_TYPE)
continue;
thisSize = fileHeader->tocs[toc].subtype;
@@ -489,10 +484,8 @@ _XcursorReadImage(XcursorFile *file,
image->delay = head.delay;
n = image->width * image->height;
p = image->pixels;
- while (n--)
- {
- if (!_XcursorReadUInt(file, p))
- {
+ while (n--) {
+ if (!_XcursorReadUInt(file, p)) {
XcursorImageDestroy(image);
return NULL;
}
@@ -517,19 +510,16 @@ XcursorXcFileLoadImages(XcursorFile *file, int size)
if (!fileHeader)
return NULL;
bestSize = _XcursorFindBestSize(fileHeader, (uint32_t) size, &nsize);
- if (!bestSize)
- {
+ if (!bestSize) {
_XcursorFileHeaderDestroy(fileHeader);
return NULL;
}
images = XcursorImagesCreate(nsize);
- if (!images)
- {
+ if (!images) {
_XcursorFileHeaderDestroy(fileHeader);
return NULL;
}
- for (n = 0; n < nsize; n++)
- {
+ for (n = 0; n < nsize; n++) {
toc = _XcursorFindImageToc(fileHeader, bestSize, n);
if (toc < 0)
break;
@@ -540,8 +530,7 @@ XcursorXcFileLoadImages(XcursorFile *file, int size)
images->nimage++;
}
_XcursorFileHeaderDestroy(fileHeader);
- if (images->nimage != nsize)
- {
+ if (images->nimage != nsize) {
XcursorImagesDestroy(images);
images = NULL;
}
@@ -622,21 +611,16 @@ XcursorLibraryPath(void)
int pathlen = 0;
env_var = getenv("XCURSOR_PATH");
- if (env_var)
- {
+ if (env_var) {
path = strdup(env_var);
- }
- else
- {
+ } else {
env_var = getenv("XDG_DATA_HOME");
if (env_var) {
pathlen = strlen(env_var) + strlen(CURSORDIR ":" XCURSORPATH) + 1;
path = malloc(pathlen);
snprintf(path, pathlen, "%s%s", env_var,
CURSORDIR ":" XCURSORPATH);
- }
- else
- {
+ } else {
path = strdup(XDG_DATA_HOME_FALLBACK CURSORDIR ":" XCURSORPATH);
}
}
@@ -649,16 +633,14 @@ _XcursorAddPathElt(char *path, const char *elt, int len)
int pathlen = strlen(path);
/* append / if the path doesn't currently have one */
- if (path[0] == '\0' || path[pathlen - 1] != '/')
- {
+ if (path[0] == '\0' || path[pathlen - 1] != '/') {
strcat(path, "/");
pathlen++;
}
if (len == -1)
len = strlen(elt);
/* strip leading slashes */
- while (len && elt[0] == '/')
- {
+ while (len && elt[0] == '/') {
elt++;
len--;
}
@@ -695,8 +677,7 @@ _XcursorBuildThemeDir(const char *dir, const char *theme)
home = NULL;
homelen = 0;
- if (*dir == '~')
- {
+ if (*dir == '~') {
home = getenv("HOME");
if (!home)
return NULL;
@@ -765,25 +746,24 @@ _XcursorThemeInherits(const char *full)
return NULL;
f = fopen(full, "r");
- if (f)
- {
- while (fgets(line, sizeof(line), f))
- {
- if (!strncmp(line, "Inherits", 8))
- {
+ if (f) {
+ while (fgets(line, sizeof(line), f)) {
+ if (!strncmp(line, "Inherits", 8)) {
char *l = line + 8;
char *r;
- while (*l == ' ') l++;
- if (*l != '=') continue;
+ while (*l == ' ')
+ l++;
+ if (*l != '=')
+ continue;
l++;
- while (*l == ' ') l++;
+ while (*l == ' ')
+ l++;
result = malloc(strlen(l) + 1);
- if (result)
- {
+ if (result) {
r = result;
- while (*l)
- {
- while (XcursorSep(*l) || XcursorWhite(*l)) l++;
+ while (*l) {
+ while (XcursorSep(*l) || XcursorWhite(*l))
+ l++;
if (!*l)
break;
if (r != result)
@@ -816,7 +796,7 @@ load_all_cursors_from_dir(const char *path, int size,
if (!dir)
return;
- for(ent = readdir(dir); ent; ent = readdir(dir)) {
+ for (ent = readdir(dir); ent; ent = readdir(dir)) {
#ifdef _DIRENT_HAVE_D_TYPE
if (ent->d_type != DT_UNKNOWN &&
(ent->d_type != DT_REG && ent->d_type != DT_LNK))