summaryrefslogtreecommitdiff
path: root/environment.c
diff options
context:
space:
mode:
authorDaniel Lowe <dlowe@bitmuse.com>2008-11-10 21:07:52 (GMT)
committerJunio C Hamano <gitster@pobox.com>2008-11-11 22:43:59 (GMT)
commit9db56f71b91153f4076a796c80c61f00edd8b700 (patch)
treedc26e0cca76524884d612fdac3139accea58dbdb /environment.c
parent989206f535dcd0f43356ad38e1d54cb833d96fc2 (diff)
downloadgit-9db56f71b91153f4076a796c80c61f00edd8b700.zip
git-9db56f71b91153f4076a796c80c61f00edd8b700.tar.gz
git-9db56f71b91153f4076a796c80c61f00edd8b700.tar.bz2
Fix non-literal format in printf-style calls
These were found using gcc 4.3.2-1ubuntu11 with the warning: warning: format not a string literal and no format arguments Incorporated suggestions from Brandon Casey <casey@nrlssc.navy.mil>. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'environment.c')
-rw-r--r--environment.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/environment.c b/environment.c
index df4f03a..9ebf485 100644
--- a/environment.c
+++ b/environment.c
@@ -113,7 +113,7 @@ const char *get_git_work_tree(void)
work_tree = git_work_tree_cfg;
/* make_absolute_path also normalizes the path */
if (work_tree && !is_absolute_path(work_tree))
- work_tree = xstrdup(make_absolute_path(git_path(work_tree)));
+ work_tree = xstrdup(make_absolute_path(git_path("%s", work_tree)));
} else if (work_tree)
work_tree = xstrdup(make_absolute_path(work_tree));
git_work_tree_initialized = 1;