diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2010-09-20 16:39:22 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2010-09-20 16:39:22 +0000 |
| commit | 72404784578162495c9986cd1563d9924ddc15be (patch) | |
| tree | 86a0d13d216536b58b8293bf8a8fcdb0ef23a14b | |
| parent | 11ce23a9890699141dc7ab1c12778d32db6ea932 (diff) | |
| download | rockbox-72404784578162495c9986cd1563d9924ddc15be.zip rockbox-72404784578162495c9986cd1563d9924ddc15be.tar.gz rockbox-72404784578162495c9986cd1563d9924ddc15be.tar.bz2 rockbox-72404784578162495c9986cd1563d9924ddc15be.tar.xz | |
file_exists(): fix DEBUGF()
- %s was missing the argument (function name)
- add %p to print the function argument
- also don't call strlen() to test string nullity (and strlen() can't return a negative result)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28123 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/common/filefuncs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/common/filefuncs.c b/firmware/common/filefuncs.c index 19b8eff..c319717 100644 --- a/firmware/common/filefuncs.c +++ b/firmware/common/filefuncs.c @@ -61,9 +61,9 @@ bool file_exists(const char *file) int fd; #ifdef DEBUG - if (!file || strlen(file) <= 0) + if (!file || !*file) { - DEBUGF("%s(): Invalid parameter!\n"); + DEBUGF("%s(%p): Invalid parameter!\n", __func__, file); return false; } #endif |