diff options
author | Russell Belfer <rb@github.com> | 2013-02-11 11:44:00 -0800 |
---|---|---|
committer | Russell Belfer <rb@github.com> | 2013-02-11 11:44:00 -0800 |
commit | 390a3c81410a219b13aa6f333949c803524c8bd2 (patch) | |
tree | b6487640acf5adb87f5a0f8ee25dedd44df63ffb /src/diff_output.h | |
parent | e026cfee003e103d79e56983d68a206ae907eada (diff) | |
parent | 3ad052218cd03fe58b254f878825e3f0fd4b3054 (diff) | |
download | libgit2-390a3c81410a219b13aa6f333949c803524c8bd2.tar.gz |
Merge pull request #1190 from nulltoken/topic/reset-paths
reset: Allow the selective reset of pathspecs
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; }; |