summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--get_path.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/get_path.c b/get_path.c
index 8024e0ac39..9d0c1096a3 100644
--- a/get_path.c
+++ b/get_path.c
@@ -18,5 +18,6 @@ char *get_path(char *filename){
return NULL;
sprintf(buff, "%s%s/%s", homedir, config_dir, filename);
}
+ mp_msg(MSGT_GLOBAL,MSGL_V,"get_path('%s') -> '%s'\n",filename,buff);
return buff;
}