Просмотр исходного кода

delinted

SCCS-file: difftime.c
SCCS-SID: 7.18
Arthur David Olson 21 лет назад
Родитель
Сommit
803dbedab4
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      difftime.c

+ 1 - 1
difftime.c

@@ -57,7 +57,7 @@ const time_t	time0;
 	/*
 	** Stay calm...decent optimizers will eliminate the complexity below.
 	*/
-	if (time1 >= 0 /* && time0 < 0 */) 
+	if (time1 >= 0 /* && time0 < 0 */)
 		return (unsigned long) time1 +
 			(unsigned long) (-(time0 + 1)) + 1;
 	return -(double) ((unsigned long) time0 +