Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 6587 → Rev 6586

/drivers/ddk/Makefile
33,7 → 33,6
io/write.c \
linux/bitmap.c \
linux/ctype.c \
linux/div64.c \
linux/dmapool.c \
linux/dmi.c \
linux/fbsysfs.c \
/drivers/ddk/linux/div64.c
File deleted
/drivers/ddk/debug/dbglog.c
150,4 → 150,31
return len;
}
 
int xf86DrvMsg(int skip, int code, const char* format, ...)
{
char txtbuf[1024];
unsigned writes;
va_list ap;
 
int len = 0;
 
va_start(ap, format);
if (format)
len = vsnprintf(txtbuf, 1024, format, ap);
va_end(ap);
 
if( len )
{
SysMsgBoardStr(txtbuf);
 
if(dbgfile.path)
{
write_file(dbgfile.path,txtbuf,dbgfile.offset,len,&writes);
dbgfile.offset+=writes;
};
};
return len;
}