aboutsummaryrefslogtreecommitdiff
path: root/include/site.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/site.h')
-rw-r--r--include/site.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/site.h b/include/site.h
index 43a20d2..0f45667 100644
--- a/include/site.h
+++ b/include/site.h
@@ -2,7 +2,6 @@
#define REVELA_SITE_H
#include "config.h"
-#include "bstree.h"
#include "render.h"
#include "components.h"
@@ -29,7 +28,8 @@ struct site {
* site_init()
*/
size_t rel_content_dir;
- struct bstree *albums;
+ /* List/vector with the albums to be sorted from newer to older */
+ struct vector *albums;
/* Files/dirs that belong to albums and which shouldn't be deleted */
struct hmap *album_dirs;
struct render render;