diff options
| author | Junio C Hamano <gitster@pobox.com> | 2025-01-31 09:44:15 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-01-31 09:44:15 -0800 |
| commit | ecba2c181c556c1e44c5e3ff58af912c85ec33b2 (patch) | |
| tree | f042f1885284ca56ddf26228753762c37bb88fd9 | |
| parent | Merge branch 'ja/doc-restore-markup-update' (diff) | |
| parent | date.c: Fix type missmatch warings from msvc (diff) | |
| download | git-ecba2c181c556c1e44c5e3ff58af912c85ec33b2.tar.gz git-ecba2c181c556c1e44c5e3ff58af912c85ec33b2.zip | |
Merge branch 'sk/strlen-returns-size_t'
Code clean-up.
* sk/strlen-returns-size_t:
date.c: Fix type missmatch warings from msvc
Diffstat (limited to '')
| -rw-r--r-- | date.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1244,7 +1244,7 @@ static const char *approxidate_alpha(const char *date, struct tm *tm, struct tm } for (s = special; s->name; s++) { - int len = strlen(s->name); + size_t len = strlen(s->name); if (match_string(date, s->name) == len) { s->fn(tm, now, num); *touched = 1; @@ -1254,7 +1254,7 @@ static const char *approxidate_alpha(const char *date, struct tm *tm, struct tm if (!*num) { for (i = 1; i < 11; i++) { - int len = strlen(number_name[i]); + size_t len = strlen(number_name[i]); if (match_string(date, number_name[i]) == len) { *num = i; *touched = 1; @@ -1270,7 +1270,7 @@ static const char *approxidate_alpha(const char *date, struct tm *tm, struct tm tl = typelen; while (tl->type) { - int len = strlen(tl->type); + size_t len = strlen(tl->type); if (match_string(date, tl->type) >= len-1) { update_tm(tm, now, tl->length * *num); *num = 0; |
