From d774eb6bde6adda4336e5f59b82e803d7c07b9eb Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 17 Oct 2014 19:32:28 +0200 Subject: [PATCH] Revert "Rename to file_list_get_last_previous_stack to make its purpose clearer" This reverts commit cace73b26532500f2361c88c755d614b08ab2422. --- file_list.c | 2 +- file_list.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/file_list.c b/file_list.c index a2d4796d41..838e632194 100644 --- a/file_list.c +++ b/file_list.c @@ -220,7 +220,7 @@ void file_list_get_at_offset(const file_list_t *list, size_t index, *file_type = list->list[index].type; } -bool file_list_get_last_previous_stack(const file_list_t *list, +bool file_list_get_previous_stack(const file_list_t *list, const char **path, const char **label, unsigned *file_type) { diff --git a/file_list.h b/file_list.h index b71724d51d..50151788c5 100644 --- a/file_list.h +++ b/file_list.h @@ -56,7 +56,7 @@ void file_list_push(file_list_t *userdata, const char *path, void file_list_pop(file_list_t *list, size_t *directory_ptr); void file_list_clear(file_list_t *list); -bool file_list_get_last_previous_stack(const file_list_t *list, +bool file_list_get_previous_stack(const file_list_t *list, const char **path, const char **label, unsigned *file_type);