diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-04-27 23:59:47 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-04-27 23:59:47 +0000 |
| commit | a73d52c7118f45c766c7d0e546788739b0b42201 (patch) | |
| tree | a7c9139f7254468490b202f81cc4f32584357ca6 | |
| parent | 3caa3c08717ad745b49da01bf70a4c0da195ac14 (diff) | |
| download | rockbox-a73d52c7118f45c766c7d0e546788739b0b42201.zip rockbox-a73d52c7118f45c766c7d0e546788739b0b42201.tar.gz rockbox-a73d52c7118f45c766c7d0e546788739b0b42201.tar.bz2 rockbox-a73d52c7118f45c766c7d0e546788739b0b42201.tar.xz | |
use Logf()
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@283 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/x11/lcd-x11.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/uisimulator/x11/lcd-x11.c b/uisimulator/x11/lcd-x11.c index 9659426..bb39e6c 100644 --- a/uisimulator/x11/lcd-x11.c +++ b/uisimulator/x11/lcd-x11.c @@ -104,6 +104,6 @@ void lcd_update (void) drawdots(1, &points[0], p); drawdots(0, &clearpoints[0], cp); - fprintf(stderr, "lcd_update: Draws %d pixels, clears %d pixels\n", p, cp); + Logf("lcd_update: Draws %d pixels, clears %d pixels", p, cp); XSync(dpy,False); } |