Merge pull request #2618 from csware/msvc-no-z-prefix

There is no "z" size specifier on MSVC
This commit is contained in:
Edward Thomson 2014-10-13 11:01:52 -04:00
commit 24deacb7ee
2 changed files with 3 additions and 1 deletions

View File

@ -49,9 +49,11 @@
#if defined(_MSC_VER) || defined(__MINGW32__)
# define PRIuZ "Iu"
# define PRIxZ "Ix"
# define PRIdZ "Id"
#else
# define PRIuZ "zu"
# define PRIxZ "zx"
# define PRIdZ "zd"
#endif
/* Micosoft Visual C/C++ */

View File

@ -278,7 +278,7 @@ static void write_tree(git_buf *out, git_tree_cache *tree)
{
size_t i;
git_buf_printf(out, "%s%c%zd %"PRIuZ"\n", tree->name, 0, tree->entry_count, tree->children_count);
git_buf_printf(out, "%s%c%"PRIdZ" %"PRIuZ"\n", tree->name, 0, tree->entry_count, tree->children_count);
if (tree->entry_count != -1)
git_buf_put(out, (const char *) &tree->oid, GIT_OID_RAWSZ);