Ignore:
Timestamp:
2005-04-11T11:32:00+12:00 (19 years ago)
Author:
kjdon
Message:

added some x++ -> ++x changes submitted by Emanuel Dejanu

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/colservr/querycache.cpp

    r1285 r9620  
    5959  int i;
    6060
    61   for (i=0; i < maxcachesize; i++)
     61  for (i=0; i < maxcachesize; ++i)
    6262    {
    6363      if (resultcache[i].queryparameters == queryparams)
     
    9393  int minaccessi = 0;
    9494 
    95   for (i=0; i < maxcachesize; i++)
     95  for (i=0; i < maxcachesize; ++i)
    9696    {
    9797      if (resultcache[i].accessnum < minaccessnum) {
Note: See TracChangeset for help on using the changeset viewer.