diff options
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -34,7 +34,7 @@ void print_cache(void) struct cache_struct *cs = cache; for (; i < CACHE_ENTRIES; i++) { cs = cs->next; - printf("%d ", cs->sector); + printf("%d ", cs->block); } printf("\n"); |