diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2003-02-22 01:54:03 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2003-02-22 01:54:03 +0000 |
| commit | 490085aa7d76c10e61ae5b79156fee16c9adccb5 (patch) | |
| tree | 128d9df6b34b8d99b4355e1d04814f91993ed65f | |
| parent | 94dea1e020806011f7596dbee508fb117954bdcc (diff) | |
| download | rockbox-490085aa7d76c10e61ae5b79156fee16c9adccb5.zip rockbox-490085aa7d76c10e61ae5b79156fee16c9adccb5.tar.gz rockbox-490085aa7d76c10e61ae5b79156fee16c9adccb5.tar.bz2 rockbox-490085aa7d76c10e61ae5b79156fee16c9adccb5.tar.xz | |
Lame debug output
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3322 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/common/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/common/file.c b/firmware/common/file.c index dfbebe1..6efcd38 100644 --- a/firmware/common/file.c +++ b/firmware/common/file.c @@ -423,7 +423,7 @@ static int readwrite(int fd, void* buf, int count, bool write) rc = fat_readwrite(&(file->fatfile), 1, file->cache, false ); if ( rc < 0 ) { - DEBUGF("Failed reading\n"); + DEBUGF("Failed writing\n"); errno = EIO; return -6; } |