|
From: Karsten W. <kar...@us...> - 2005-12-20 22:26:50
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19803 Modified Files: findinfile.c Log Message: compiler warning rename Index: findinfile.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/findinfile.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** findinfile.c 11 Jan 2005 22:48:05 -0000 1.4 --- findinfile.c 20 Dec 2005 22:26:41 -0000 1.5 *************** *** 252,256 **** ! boolean fiffindinfile (const tyfilespec *fs, bigstring pattern, long *index) { /* --- 252,256 ---- ! boolean fiffindinfile (const tyfilespec *fs, bigstring pattern, long *idx) { /* *************** *** 274,278 **** hdlopenfile hfile = nil; ! *index = -1; /*indicate an error*/ lenpattern = stringlength (pattern); --- 274,278 ---- hdlopenfile hfile = nil; ! *idx = -1; /*indicate an error*/ lenpattern = stringlength (pattern); *************** *** 340,344 **** } /*for*/ ! *index = fpos + (pbuffer - *hbuffer - 1); flreturned = true; --- 340,344 ---- } /*for*/ ! *idx = fpos + (pbuffer - *hbuffer - 1); flreturned = true; |