Changeset 884

Show
Ignore:
Timestamp:
03/05/08 22:25:54
Author:
robert
Message:

Changed % to percent to avoid libc bug in parsing %%

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/vpb/MachinePool.cpp

    r883 r884  
    860860    double estimateTimeToCompletion = estimatedTimeOfLastCompletion-currentTime; 
    861861     
    862     log(osg::NOTICE,"Number of tasks completed %i, running %i, pending %i. Estimated time to completion %.1f seconds, %2.1f%% done.",numTasksCompleted, numTasksRunning, numTasksPending, estimateTimeToCompletion, 100.0*currentTime/estimatedTimeOfLastCompletion); 
     862    log(osg::NOTICE,"Number of tasks completed %i, running %i, pending %i. Estimated time to completion %.1f seconds, %2.1f percent done.",numTasksCompleted, numTasksRunning, numTasksPending, estimateTimeToCompletion, 100.0*currentTime/estimatedTimeOfLastCompletion); 
    863863 
    864864}