aboutsummaryrefslogtreecommitdiff
path: root/src/DatabaseSimple.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-02 23:06:20 +0100
committerMax Kellermann <max@duempel.org>2013-01-03 01:10:47 +0100
commit3e8047e5831b4cc7dabae596746066698ad7c8cd (patch)
tree51cf8e3cc3b5b373f11ffbd6d7c0b34b3c0acb6c /src/DatabaseSimple.hxx
parent440ac51cf0250904813dfc9398ca8c9e6467328f (diff)
Directory: rename struct directory to Directory
Diffstat (limited to 'src/DatabaseSimple.hxx')
-rw-r--r--src/DatabaseSimple.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/DatabaseSimple.hxx b/src/DatabaseSimple.hxx
index 20f03802..e57ae41b 100644
--- a/src/DatabaseSimple.hxx
+++ b/src/DatabaseSimple.hxx
@@ -28,7 +28,7 @@
#include <stdbool.h>
struct config_param;
-struct directory;
+struct Directory;
struct db_selection;
struct db_visitor;
@@ -47,7 +47,7 @@ db_is_simple(void);
* May only be used if db_is_simple() returns true.
*/
gcc_pure
-struct directory *
+Directory *
db_get_root(void);
/**
@@ -55,7 +55,7 @@ db_get_root(void);
*/
gcc_nonnull(1)
gcc_pure
-struct directory *
+Directory *
db_get_directory(const char *name);
/**