1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-02-03 06:45:51 +01:00

Small fix for an endless loop in findfile.c:wfindfileinarray()

This commit is contained in:
dan
1999-03-17 00:59:36 +00:00
parent 4eda694989
commit cd35b67a6b
2 changed files with 45 additions and 22 deletions

View File

@@ -312,7 +312,7 @@ wfindfileinarray(proplist_t array, char *file)
}
flen = strlen(file);
for (i=0; PLGetNumberOfElements(array); i++) {
for (i=0; i<PLGetNumberOfElements(array); i++) {
proplist_t prop;
char *p;