projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9cb5987
)
perf config: Rename 'v' to 'home' in set_buildid_dir()
author
Taeung Song
<treeze.taeung@gmail.com>
Sun, 27 Mar 2016 17:22:20 +0000
(
02:22
+0900)
committer
Arnaldo Carvalho de Melo
<acme@redhat.com>
Wed, 30 Mar 2016 14:14:09 +0000
(11:14 -0300)
Change the variable name 'v' to 'home' to make it more readable.
Signed-off-by: Taeung Song <treeze.taeung@gmail.com>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link:
http://lkml.kernel.org/r/1459099340-16911-3-git-send-email-treeze.taeung@gmail.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/config.c
patch
|
blob
|
history
diff --git
a/tools/perf/util/config.c
b/tools/perf/util/config.c
index 2dd78f4c97a029b71a5f3923125338eeb17652be..5c20d783423beb2149c53239689cc13d99f8f7c3 100644
(file)
--- a/
tools/perf/util/config.c
+++ b/
tools/perf/util/config.c
@@
-540,10
+540,11
@@
void set_buildid_dir(const char *dir)
/* default to $HOME/.debug */
if (buildid_dir[0] == '\0') {
- char *v = getenv("HOME");
- if (v) {
+ char *home = getenv("HOME");
+
+ if (home) {
snprintf(buildid_dir, MAXPATHLEN-1, "%s/%s",
-
v
, DEBUG_CACHE_DIR);
+
home
, DEBUG_CACHE_DIR);
} else {
strncpy(buildid_dir, DEBUG_CACHE_DIR, MAXPATHLEN-1);
}