projects
/
vimb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d7e4edc
)
Fixed unused function parameter.
author
Daniel Carl
<danielcarl@gmx.de>
Mon, 5 Jun 2017 22:14:06 +0000
(
00:14
+0200)
committer
Daniel Carl
<danielcarl@gmx.de>
Mon, 5 Jun 2017 22:14:06 +0000
(
00:14
+0200)
src/util.c
patch
|
blob
|
history
diff --git
a/src/util.c
b/src/util.c
index
e5a813b
..
3355c88
100644
(file)
--- a/
src/util.c
+++ b/
src/util.c
@@
-366,7
+366,7
@@
char *util_get_filepath(const char *dir, const char *filename, gboolean create)
char *fullpath;
/* Built the full path out of config dir and given file name. */
- fullpath = g_build_filename(
util_get_config_dir()
, filename, NULL);
+ fullpath = g_build_filename(
dir
, filename, NULL);
if (g_file_test(fullpath, G_FILE_TEST_IS_REGULAR)) {
return fullpath;