Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 4291 → Rev 4292

/drivers/ddk/debug/dbglog.c
135,15 → 135,17
 
if( len )
{
SysMsgBoardStr(txtbuf);
 
if( dbgfile.path)
{
/* do not write into log file if interrupts disabled */
 
if ( (get_eflags() & (1 << 9)) && dbgfile.path)
if ( get_eflags() & (1 << 9) )
{
write_file(dbgfile.path,txtbuf,dbgfile.offset,len,&writes);
dbgfile.offset+=writes;
};
}
else SysMsgBoardStr(txtbuf);
};
return len;
}