80 col cleanups

This commit is contained in:
Ron Pedde 2006-04-03 02:24:58 +00:00
parent 96686cd917
commit 5d967ead1e
2 changed files with 4 additions and 3 deletions

View File

@ -150,8 +150,8 @@ int db_sqlite3_open(char **pe, char *dsn) {
DPRINTF(E_LOG,L_DB,"Can't get db version. New database?\n"); DPRINTF(E_LOG,L_DB,"Can't get db version. New database?\n");
} else if(ver != DB_SQLITE3_VERSION) { } else if(ver != DB_SQLITE3_VERSION) {
DPRINTF(E_LOG,L_DB,"Old database version -- forcing rescan\n"); DPRINTF(E_LOG,L_DB,"Old database version -- forcing rescan\n");
err=db_sqlite3_exec(pe,E_FATAL,"insert into config (term,value) values " err=db_sqlite3_exec(pe,E_FATAL,"insert into config (term,value) "
"('rescan','1')"); "values ('rescan','1')");
if(err != DB_E_SUCCESS) if(err != DB_E_SUCCESS)
return err; return err;
} }

View File

@ -153,7 +153,8 @@ void xml_deinit(XMLSTRUCT *pxml) {
XMLSTACK *pstack; XMLSTACK *pstack;
if(pxml->stack.next) { if(pxml->stack.next) {
DPRINTF(E_LOG,L_XML,"xml_deinit: entries still on stack (%s)\n",pxml->stack.next->tag); DPRINTF(E_LOG,L_XML,"xml_deinit: entries still on stack (%s)\n",
pxml->stack.next->tag);
} }
while((pstack=pxml->stack.next)) { while((pstack=pxml->stack.next)) {