r145: *** empty log message ***
[ctsim.git] / libctgraphics / ezsupport.cpp
index de495e90b778eb48c704230af70adec879148f88..f788b2e75965b218f29fdabeff03021053dd490c 100644 (file)
@@ -2,7 +2,7 @@
 **  This is part of the CTSim program
 **  Copyright (C) 1983-2000 Kevin Rosenberg
 **
-**  $Id: ezsupport.cpp,v 1.3 2000/07/04 18:33:35 kevin Exp $
+**  $Id: ezsupport.cpp,v 1.4 2000/07/13 07:03:21 kevin Exp $
 **
 **  This program is free software; you can redistribute it and/or modify
 **  it under the terms of the GNU General Public License (version 2) as
@@ -119,7 +119,7 @@ trunc (double x)
 {
   double integer;
   
-  double frac = modf (x, &integer);
+  modf (x, &integer);
   
   return (integer);
 }