mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
fix typo
This commit is contained in:
parent
a1f98cd4c1
commit
7f2cd2ae6f
1 changed files with 1 additions and 1 deletions
2
time.c
2
time.c
|
@ -3268,7 +3268,7 @@ find_time_t(struct tm *tptr, int utc_p, time_t *tp)
|
|||
status = 0;
|
||||
}
|
||||
if (guess <= guess_lo || guess_hi <= guess) {
|
||||
/* Precious guess is invalid. try binary search. */
|
||||
/* Previous guess is invalid. try binary search. */
|
||||
#ifdef DEBUG_GUESSRANGE
|
||||
if (guess <= guess_lo) fprintf(stderr, "too small guess: %ld <= %ld\n", guess, guess_lo);
|
||||
if (guess_hi <= guess) fprintf(stderr, "too big guess: %ld <= %ld\n", guess_hi, guess);
|
||||
|
|
Loading…
Add table
Reference in a new issue