summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKOSAKI Motohiro <kosaki.motohiro@gmail.com>2019-12-03 10:50:16 +0000
committerKOSAKI Motohiro <kosaki.motohiro@gmail.com>2019-12-03 10:50:16 +0000
commit7f2cd2ae6fea76ff3a2b95b69e6e2f749e8a249f (patch)
tree280f250dcef6c3a978730cbf4f638ac330085aae
parenta1f98cd4c1d55efe4998ecd3d94508634baefc23 (diff)
fix typo
-rw-r--r--time.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/time.c b/time.c
index 137d5e0f9f..25b843e405 100644
--- a/time.c
+++ b/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);