tree a3bd48d2beba79d70e97d8647ee35a645e494350
parent f908b2542a9a3ea321633a31cf0e7ca2c8b669d4
author Brad Roberts <[EMAIL PROTECTED]> 1114074486 -0700
committer Brad Roberts <[EMAIL PROTECTED]> 1114074486 -0700

[PATCH] migrate show-files.c to the new cache api's

Signed-off-by: Brad Roberts <[EMAIL PROTECTED]>
---

 show-files.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

Index: show-files.c
===================================================================
--- f908b2542a9a3ea321633a31cf0e7ca2c8b669d4:1/show-files.c  (mode:100644 
sha1:0b49ca051de413e7182445dd8fb9144125716974)
+++ 32efd81a3292a923ce5b5ae2e39ffefd0b08664d:1/show-files.c  (mode:100644 
sha1:11fbbccef2df50d528105ceb48b15275f2a5693e)
@@ -116,8 +116,8 @@
                        printf("%s%s%c", tag_other, dir[i], line_terminator);
        }
        if (show_cached | show_stage) {
-               for (i = 0; i < active_nr; i++) {
-                       struct cache_entry *ce = active_cache[i];
+               for (i = 0; i < get_num_cache_entries(); i++) {
+                       struct cache_entry *ce = get_cache_entry(i);
                        if (show_unmerged && !ce_stage(ce))
                                continue;
                        if (!show_stage)
@@ -136,8 +136,8 @@
                }
        }
        if (show_deleted) {
-               for (i = 0; i < active_nr; i++) {
-                       struct cache_entry *ce = active_cache[i];
+               for (i = 0; i < get_num_cache_entries(); i++) {
+                       struct cache_entry *ce = get_cache_entry(i);
                        struct stat st;
                        if (!stat(ce->name, &st))
                                continue;

-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to