summaryrefslogtreecommitdiff
path: root/apps/codecs.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs.c')
-rw-r--r--apps/codecs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs.c b/apps/codecs.c
index 154faa3f3f..29a664425a 100644
--- a/apps/codecs.c
+++ b/apps/codecs.c
@@ -193,8 +193,8 @@ struct codec_api ci = {
193 193
194void codec_get_full_path(char *path, const char *codec_root_fn) 194void codec_get_full_path(char *path, const char *codec_root_fn)
195{ 195{
196 snprintf(path, MAX_PATH-1, CODECS_DIR "/%s." CODEC_EXTENSION, 196 snprintf(path, MAX_PATH-1, "%s/%s." CODEC_EXTENSION,
197 codec_root_fn); 197 CODECS_DIR, codec_root_fn);
198} 198}
199 199
200static int codec_load_ram(int size, struct codec_api *api) 200static int codec_load_ram(int size, struct codec_api *api)