Commit 61bccb10 61bccb105baae9104f44bb7da090f9ca05b66bf0 by Wojciech Polak

Fix typos.

1 parent 87e973dd
......@@ -81,7 +81,7 @@ mu_dbm_init ()
mu_dbm_register (&_mu_dbm_ndbm);
#endif
#ifdef WITH_TOKYOCABINET
mu_dbm_register (&_mu_dbm_tokyokabinet);
mu_dbm_register (&_mu_dbm_tokyocabinet);
#endif
if (!mu_dbm_hint)
{
......
......@@ -40,7 +40,7 @@ extern struct mu_dbm_impl _mu_dbm_bdb;
extern struct mu_dbm_impl _mu_dbm_ndbm;
#endif
#ifdef WITH_TOKYOCABINET
extern struct mu_dbm_impl _mu_dbm_tokyokabinet;
extern struct mu_dbm_impl _mu_dbm_tokyocabinet;
#endif
void _mu_dbm_init (void);
......
......@@ -214,7 +214,7 @@ _tc_strerror (mu_dbm_file_t db)
return tchdberrmsg (db->db_errno.n);
}
struct mu_dbm_impl _mu_dbm_tokyokabinet = {
struct mu_dbm_impl _mu_dbm_tokyocabinet = {
"tc",
_tc_file_safety,
_tc_get_fd,
......