dbertoni    00/11/03 11:26:32

  Modified:    c/src/XSLT XSLTEngineImpl.cpp
  Log:
  Fixed bug with displaying duration.
  
  Revision  Changes    Path
  1.68      +1 -1      xml-xalan/c/src/XSLT/XSLTEngineImpl.cpp
  
  Index: XSLTEngineImpl.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/XSLTEngineImpl.cpp,v
  retrieving revision 1.67
  retrieving revision 1.68
  diff -u -r1.67 -r1.68
  --- XSLTEngineImpl.cpp        2000/11/02 22:26:02     1.67
  +++ XSLTEngineImpl.cpp        2000/11/03 19:26:20     1.68
  @@ -1305,7 +1305,7 @@
   
                if(0 != m_diagnosticsPrintWriter)
                {
  -                     const double    millis = (theDuration / CLOCKS_PER_SEC) 
* 1000.0L;
  +                     const double    millis = (double(theDuration) / 
CLOCKS_PER_SEC) * 1000.0L;
   
                        XalanDOMString  msg(info);
   
  
  
  

Reply via email to