diff options
author | nulltoken <emeric.fermas@gmail.com> | 2013-02-05 16:52:56 +0100 |
---|---|---|
committer | nulltoken <emeric.fermas@gmail.com> | 2013-02-05 20:33:27 +0100 |
commit | 3ad052218cd03fe58b254f878825e3f0fd4b3054 (patch) | |
tree | 7b8f59dd9f12a3be9ea8daff291fcfeb03f4592e /src/diff_output.h | |
parent | d96aa8a9ca74a40502d86de4c36e0a54b1ed1dc7 (diff) | |
download | libgit2-3ad052218cd03fe58b254f878825e3f0fd4b3054.tar.gz |
Fix MSVC compilation warnings
Fix #1308
Diffstat (limited to 'src/diff_output.h')
-rw-r--r-- | src/diff_output.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/diff_output.h b/src/diff_output.h index ae1a491ec..083355676 100644 --- a/src/diff_output.h +++ b/src/diff_output.h @@ -42,7 +42,7 @@ typedef struct diff_patch_line diff_patch_line; struct diff_patch_line { const char *ptr; size_t len; - int lines, oldno, newno; + size_t lines, oldno, newno; char origin; }; |