--- scanner.c 17 Nov 2009 19:13:00 -0000 1.53 +++ scanner.c 9 Jan 2010 13:19:49 -0000 @@ -632,4 +636,4 @@ -filter_audio(const struct dirent *d) +filter_audio(struct dirent *d) { return ( (*d->d_name != '.') && ((d->d_type == DT_DIR) || @@ -644,4 +648,4 @@ -filter_video(const struct dirent *d) +filter_video(struct dirent *d) { return ( (*d->d_name != '.') && ((d->d_type == DT_DIR) || @@ -656,4 +660,4 @@ -filter_images(const struct dirent *d) +filter_images(struct dirent *d) { return ( (*d->d_name != '.') && ((d->d_type == DT_DIR) || @@ -668,4 +672,4 @@ -filter_media(const struct dirent *d) +filter_media(struct dirent *d) { return ( (*d->d_name != '.') && ((d->d_type == DT_DIR) ||