1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-30 18:32:34 +01:00

Update for 0.51.2-pre2

This commit is contained in:
dan
1999-03-09 14:58:01 +00:00
parent 60980735fe
commit 088c0ac230
108 changed files with 2998 additions and 2770 deletions

View File

@@ -303,8 +303,9 @@ main(int argc, char **argv)
prop = PLGetProplistWithPath(path);
if (!prop) {
printf("%s:could not load WindowMaker configuration file \"%s\".\n",
ProgName, path);
perror(path);
printf("%s:could not load WindowMaker configuration file.\n",
ProgName);
exit(1);
}
@@ -345,8 +346,8 @@ main(int argc, char **argv)
style = PLGetProplistWithPath(buffer);
if (!style) {
printf("%s:could not load style file \"%s\".\n", ProgName,
buffer);
perror(buffer);
printf("%s:could not load style file.\n", ProgName);
exit(1);
}
@@ -355,7 +356,8 @@ main(int argc, char **argv)
} else {
style = PLGetProplistWithPath(file);
if (!style) {
printf("%s:could not load style file \"%s\".\n", ProgName, file);
perror(file);
printf("%s:could not load style file.\n", ProgName);
exit(1);
}
}