diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2007-03-04 19:30:03 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2007-03-04 19:30:03 +0000 |
| commit | 416218660aee3df058b8f6d7dbd49b79adddd020 (patch) | |
| tree | 03a9df6206361cc1a645bb38b18956efeefda5fb /apps | |
| parent | 55e1b531db11dd98ea8c23c6c363ccb2c3dfd1e6 (diff) | |
| download | rockbox-416218660aee3df058b8f6d7dbd49b79adddd020.zip rockbox-416218660aee3df058b8f6d7dbd49b79adddd020.tar.gz rockbox-416218660aee3df058b8f6d7dbd49b79adddd020.tar.bz2 rockbox-416218660aee3df058b8f6d7dbd49b79adddd020.tar.xz | |
Ignore me. I am silly.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12599 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/tagcache.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/tagcache.c b/apps/tagcache.c index 120b8fd..7e614aa 100644 --- a/apps/tagcache.c +++ b/apps/tagcache.c @@ -92,7 +92,6 @@ static const char tagcache_thread_name[] = "tagcache"; #endif #define UNTAGGED "<Untagged>" -#define SIZEOF_UNTAGGED 11 /* Including \0 */ /* Previous path when scanning directory tree recursively. */ static char curpath[TAG_MAXLEN+32]; @@ -1525,7 +1524,7 @@ static int check_if_empty(char **tag) if (*tag == NULL || *tag[0] == '\0') { *tag = UNTAGGED; - return SIZEOF_UNTAGGED; /* Tag length */ + return sizeof(UNTAGGED); /* Tag length */ } length = strlen(*tag); |