summaryrefslogtreecommitdiff
path: root/include/git2/indexer.h
diff options
context:
space:
mode:
authorCarlos Martín Nieto <carlos@cmartin.tk>2012-08-26 00:35:52 +0200
committerCarlos Martín Nieto <carlos@cmartin.tk>2012-08-26 00:42:28 +0200
commit2b175ca972f2531e5ef46d24abeb831d90033a33 (patch)
tree873955c2c00479a19396406c77f805a5545845cc /include/git2/indexer.h
parentcc1d85d1da7fd0e51ea0e3ddfbe516c043c95731 (diff)
downloadlibgit2-2b175ca972f2531e5ef46d24abeb831d90033a33.tar.gz
indexer: kill git_indexer_stats.data_received
It's not really needed with the current code as we have EOS and the sideband's flush to tell us we're done. Keep the distinction between processed and received objects.
Diffstat (limited to 'include/git2/indexer.h')
-rw-r--r--include/git2/indexer.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/git2/indexer.h b/include/git2/indexer.h
index 92d1d9e3a..87f48fe27 100644
--- a/include/git2/indexer.h
+++ b/include/git2/indexer.h
@@ -20,7 +20,6 @@ typedef struct git_indexer_stats {
unsigned int total;
unsigned int processed;
unsigned int received;
- unsigned int data_received;
} git_indexer_stats;