Changeset 9041


Ignore:
Timestamp:
02/13/08 14:49:35 (5 years ago)
Author:
eko
Message:

just a scale

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/router/httpd/modules/broadcom.c

    r9040 r9041  
    40034003  while (max > smax) 
    40044004  {     
    4005    if (max > 5) smax = f * 10; 
    4006    if (max > 10) smax = f * 25; 
    4007    if (max > 25) smax = f * 50; 
     4005   if (max > (f * 5)) smax = f * 10; 
     4006   if (max > (f * 10)) smax = f * 25; 
     4007   if (max > (f * 25)) smax = f * 50; 
    40084008   f = f * 10; 
    40094009  }   
Note: See TracChangeset for help on using the changeset viewer.