summaryrefslogtreecommitdiff
path: root/cli_ure
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2014-08-12 17:21:53 +0200
committerThomas Arnhold <thomas@arnhold.org>2014-08-13 10:10:49 +0200
commit5f15f188591abf83747ecf230c61af75964d6292 (patch)
tree3f77ab57050c2475ae385cb40feedd6a3212c365 /cli_ure
parent2ccfaafb3eac63501a8285bc26f3f4bdbd65b084 (diff)
warning C4189: local variable is initialized but not referenced
Change-Id: Ic8a76a9ab73a3466fe155e2ca8eecedeb6e810c9
Diffstat (limited to 'cli_ure')
-rw-r--r--cli_ure/source/native/native_bootstrap.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli_ure/source/native/native_bootstrap.cxx b/cli_ure/source/native/native_bootstrap.cxx
index 8be72287fd9d..e1acda3b4bfd 100644
--- a/cli_ure/source/native/native_bootstrap.cxx
+++ b/cli_ure/source/native/native_bootstrap.cxx
@@ -236,7 +236,7 @@ void extendPath(LPCWSTR szUreBinPath)
lstrcat(sNewPath, L";");
lstrcat(sNewPath, sEnvPath);
}
- BOOL bSet = SetEnvironmentVariable(L"PATH", sNewPath);
+ SetEnvironmentVariable(L"PATH", sNewPath);
delete[] sEnvPath;
delete[] sNewPath;