mirror of
https://github.com/labwc/labwc.git
synced 2026-02-15 22:05:25 -05:00
Fix trivial coding style breaches
This commit is contained in:
parent
8e1f115486
commit
5b34c81768
22 changed files with 151 additions and 91 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue