Merge github.com:cyberemissary/mdbtools

This commit is contained in:
Evan Miller
2019-06-03 11:58:16 -04:00
7 changed files with 13 additions and 13 deletions

View File

@@ -35,7 +35,7 @@
static int is_init;
GHashTable *mdb_backends;
void _mdb_remove_backends();
void _mdb_remove_backends(void);
/* Access data types */
static MdbBackendType mdb_access_types[] = {

View File

@@ -31,7 +31,7 @@
static unsigned long opts;
static int optset;
static void load_options();
static void load_options(void);
void
mdb_debug(int klass, char *fmt, ...)

View File

@@ -76,7 +76,7 @@ free_names(GPtrArray *names) {
g_ptr_array_free(names, TRUE);
}
MdbProperties *
mdb_alloc_props()
mdb_alloc_props(void)
{
MdbProperties *props;

View File

@@ -44,7 +44,7 @@ struct type_struct {
};
char *
valid_types()
valid_types(void)
{
static char ret[256]; /* be sure to allow for enough space if adding more */
int i = 0;