]> git.ipfire.org Git - thirdparty/squid.git/blobdiff - src/int.cc
Cleanup: zap CVS Id tags
[thirdparty/squid.git] / src / int.cc
index 9e0b94c14e72d2e2ad8afc6c140af099b511cea2..1da700ab593d6b309b6588f3414fd7603148f499 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: int.cc,v 1.2 2003/02/21 22:50:09 robertc Exp $
+ * $Id$
  *
  * DEBUG: section 21    Integer functions
  * AUTHOR: Harvest Derived
  *  it under the terms of the GNU General Public License as published by
  *  the Free Software Foundation; either version 2 of the License, or
  *  (at your option) any later version.
- *  
+ *
  *  This program is distributed in the hope that it will be useful,
  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *  GNU General Public License for more details.
- *  
+ *
  *  You should have received a copy of the GNU General Public License
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
@@ -37,7 +37,7 @@
 int
 isPowTen(int count)
 {
-    double x = log(count) / log(10.0);
+    double x = log(static_cast<double>(count)) / log(10.0);
 
     if (0.0 != x - (double) (int) x)
         return 0;