1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-01-06 13:54:12 +01:00

Silence a few warnings

Signed-off-by: Tamas TEVESZ <ice@extreme.hu>
This commit is contained in:
Tamas TEVESZ
2010-09-29 03:16:55 +02:00
committed by Carlos R. Mafra
parent 14863cd3b1
commit 7859e2d59f
4 changed files with 7 additions and 7 deletions

View File

@@ -395,7 +395,7 @@ static void dumpRImage(char *path, RImage * image)
f = fopen(path, "wb");
if (!f) {
werror(path);
werror("%s", path);
return;
}
fprintf(f, "%02x%02x%1x", image->width, image->height, channels);
@@ -404,7 +404,7 @@ static void dumpRImage(char *path, RImage * image)
fsync(fileno(f));
if (fclose(f) < 0) {
werror(path);
werror("%s", path);
}
}
@@ -1572,7 +1572,7 @@ static void createPanel(Panel * p)
if (access(panel->fprefix, F_OK) != 0) {
if (mkdir(panel->fprefix, 0755) < 0) {
werror(panel->fprefix);
werror("%s", panel->fprefix);
ok = False;
}
}
@@ -1582,7 +1582,7 @@ static void createPanel(Panel * p)
panel->fprefix = tmp;
if (access(panel->fprefix, F_OK) != 0) {
if (mkdir(panel->fprefix, 0755) < 0) {
werror(panel->fprefix);
werror("%s", panel->fprefix);
}
}
}

View File

@@ -1646,7 +1646,7 @@ static WMPropList *processSubmenu(WEditMenu * menu)
pmenu = WMCreatePLArray(pl, NULL);
i = 0;
while (item = WGetEditMenuItem(menu, i++)) {
while ((item = WGetEditMenuItem(menu, i++))) {
WEditMenu *submenu;
s = WGetEditMenuItemTitle(item);