Changed "count" to "used" in struct file_list since there can
[rsync.git] / rsync.h
diff --git a/rsync.h b/rsync.h
index f4b03a69ca0a8979d004cf802743dc6b6c166cf2..17afb6904ad2048c03a6a6d3e9fa741ccaabfa8e 100644 (file)
--- a/rsync.h
+++ b/rsync.h
@@ -674,9 +674,9 @@ struct file_list {
        struct file_struct **files, **sorted;
        alloc_pool_t file_pool;
        void *pool_boundary;
-       int count, malloced;
-       int low, high; /* 0-relative index values excluding empties */
-       int ndx_start; /* the start offset for inc_recurse mode */
+       int used, malloced;
+       int low, high;  /* 0-relative index values excluding empties */
+       int ndx_start;  /* the start offset for inc_recurse mode */
        int parent_ndx; /* dir_flist index of parent directory */
        int in_progress, to_redo;
 };