log: replace a few fprintf's with DPRINTF's.

This commit is contained in:
Justin Maggard
2014-04-25 17:31:12 -07:00
parent 381c4805e6
commit e4fcb717e7
2 changed files with 6 additions and 6 deletions

View File

@ -591,7 +591,7 @@ CreateDatabase(void)
sql_failed:
if( ret != SQLITE_OK )
fprintf(stderr, "Error creating SQLite3 database!\n");
DPRINTF(E_ERROR, L_DB_SQL, "Error creating SQLite3 database!\n");
return (ret != SQLITE_OK);
}