Commit FS#9970 by Yoshihisa Uchida: fix building when HAVE_SERIAL & ROCKBOX_HAS_LOGF is defined in a simulator build
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20291 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
4654963cf9
commit
dd9a9e40f8
1 changed files with 1 additions and 1 deletions
|
@ -131,7 +131,7 @@ void _logf(const char *format, ...)
|
|||
va_end(ap);
|
||||
|
||||
len = strlen(buf);
|
||||
#ifdef HAVE_SERIAL
|
||||
#if defined(HAVE_SERIAL) && !defined(SIMULATOR)
|
||||
serial_tx(buf);
|
||||
serial_tx("\r\n");
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue