Fix trivial coding style breaches

This commit is contained in:
Johan Malm 2022-04-04 20:53:36 +01:00
parent 8e1f115486
commit 5b34c81768
22 changed files with 151 additions and 91 deletions

View file

@ -95,9 +95,9 @@ find_dir(struct ctx *ctx)
if (!prefix) {
continue;
}
gchar **prefixes;
gchar * *prefixes;
prefixes = g_strsplit(prefix, ":", -1);
for (gchar **p = prefixes; *p; p++) {
for (gchar * *p = prefixes; *p; p++) {
ctx->build_path_fn(ctx, *p, d.path);
if (debug) {
fprintf(stderr, "%s\n", ctx->buf);