Skip to content

Commit

Permalink
dbtext: fix newline typo
Browse files Browse the repository at this point in the history
  • Loading branch information
razvancrainea committed Nov 27, 2013
1 parent 0636a00 commit fae8dc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/db_text/dbt_base.c
Expand Up @@ -95,7 +95,7 @@ db_con_t* dbt_init(const str* _sqlurl)
memset(_res, 0, sizeof(db_con_t) + sizeof(dbt_con_t));
_res->tail = (unsigned long)((char*)_res+sizeof(db_con_t));

LM_INFO("using database at: %.*s", _s.len, _s.s);
LM_INFO("using database at: %.*s\n", _s.len, _s.s);
DBT_CON_CONNECTION(_res) = dbt_cache_get_db(&_s);
if (!DBT_CON_CONNECTION(_res))
{
Expand Down

0 comments on commit fae8dc3

Please sign in to comment.