diff options
Diffstat (limited to 'apps/codecs.c')
| -rw-r--r-- | apps/codecs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs.c b/apps/codecs.c index 154faa3..29a6644 100644 --- a/apps/codecs.c +++ b/apps/codecs.c @@ -193,8 +193,8 @@ struct codec_api ci = { void codec_get_full_path(char *path, const char *codec_root_fn) { - snprintf(path, MAX_PATH-1, CODECS_DIR "/%s." CODEC_EXTENSION, - codec_root_fn); + snprintf(path, MAX_PATH-1, "%s/%s." CODEC_EXTENSION, + CODECS_DIR, codec_root_fn); } static int codec_load_ram(int size, struct codec_api *api) |