diff options
Diffstat (limited to '')
-rw-r--r-- | src/directory.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/directory.h b/src/directory.h index cb587234f..a0a615265 100644 --- a/src/directory.h +++ b/src/directory.h @@ -35,7 +35,7 @@ typedef struct _DirectoryStat { } DirectoryStat; typedef struct _Directory { - char * name; + char * path; DirectoryList * subDirectories; SongList * songs; struct _Directory * parent; @@ -76,7 +76,8 @@ int traverseAllIn(FILE * fp, char * name, void * data); /* don't free this */ -char * getDirectoryPath(Directory * dir); +/*char * getDirectoryPath(Directory * dir);*/ +#define getDirectoryPath(dir) ((dir && dir->path) ? dir->path : "") /* free the string that is returned */ char * catDirAndFileName(Directory * dir, char * filename); |