You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4cxx-dev@logging.apache.org by mc...@apache.org on 2004/04/02 10:50:42 UTC

cvs commit: logging-log4cxx/src system.cpp

mcatan      2004/04/02 00:50:42

  Modified:    src      system.cpp
  Log:
  removed useless line
  
  Revision  Changes    Path
  1.9       +0 -1      logging-log4cxx/src/system.cpp
  
  Index: system.cpp
  ===================================================================
  RCS file: /home/cvs/logging-log4cxx/src/system.cpp,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- system.cpp	28 Jan 2004 00:27:54 -0000	1.8
  +++ system.cpp	2 Apr 2004 08:50:41 -0000	1.9
  @@ -41,7 +41,6 @@
       struct timeb tp;
       ::ftime(&tp);
   
  -	time_t time1 = time(0);
       return ((int64_t)tp.time * 1000) + (int64_t)tp.millitm;
   #else
       return (int64_t)::time(0) * 1000;