Skip to content

Commit

Permalink
Merge branch 'ja/i18n-fix'
Browse files Browse the repository at this point in the history
* ja/i18n-fix:
  i18n: fix small typos
  • Loading branch information
gitster committed Nov 29, 2018
2 parents 9ec8af6 + d355e46 commit 7068cbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion http.c
Original file line number Diff line number Diff line change
Expand Up @@ -834,7 +834,7 @@ static CURL *get_curl_handle(void)
#if LIBCURL_VERSION_NUM >= 0x072c00
curl_easy_setopt(result, CURLOPT_SSL_OPTIONS, CURLSSLOPT_NO_REVOKE);
#else
warning(_("CURLSSLOPT_NO_REVOKE not suported with cURL < 7.44.0"));
warning(_("CURLSSLOPT_NO_REVOKE not supported with cURL < 7.44.0"));
#endif
}

Expand Down
2 changes: 1 addition & 1 deletion midx.c
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ int prepare_midx_pack(struct multi_pack_index *m, uint32_t pack_int_id)
struct strbuf pack_name = STRBUF_INIT;

if (pack_int_id >= m->num_packs)
die(_("bad pack-int-id: %u (%u total packs"),
die(_("bad pack-int-id: %u (%u total packs)"),
pack_int_id, m->num_packs);

if (m->packs[pack_int_id])
Expand Down

0 comments on commit 7068cbc

Please sign in to comment.