소스 검색

Remove a debug message

Olivier Marty 9 년 전
부모
커밋
cfcad0da3d
1개의 변경된 파일1개의 추가작업 그리고 3개의 파일을 삭제
  1. 1 3
      time.c

+ 1 - 3
time.c

@@ -76,10 +76,8 @@ void timeInitialize(int rel)
 
 struct timespec timeGetRelative()
 {
-  if(pause) {
-    printf("paused !\n");
+  if(pause)
     return tPause;
-  }
 
   struct timespec r;
   if(clock_gettime(CLOCK_REALTIME, &r) < 0)