summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/filetypes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/filetypes.c b/apps/filetypes.c
index 12b4fe3dc6..3ce3200e3c 100644
--- a/apps/filetypes.c
+++ b/apps/filetypes.c
@@ -233,7 +233,7 @@ long tree_filetype_voiceclip(int attr)
233 { 233 {
234 int count = sizeof(inbuilt_attrvoices)/sizeof(*inbuilt_attrvoices); 234 int count = sizeof(inbuilt_attrvoices)/sizeof(*inbuilt_attrvoices);
235 /* try to find a voice ID for the extension, if known */ 235 /* try to find a voice ID for the extension, if known */
236 //attr &= FILE_ATTR_MASK; /* file type */ 236 attr &= FILE_ATTR_MASK; /* file type */
237 for (j=0; j<count; j++) 237 for (j=0; j<count; j++)
238 if (attr == inbuilt_attrvoices[j].tree_attr) 238 if (attr == inbuilt_attrvoices[j].tree_attr)
239 { 239 {