aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Fabio Bas2012-01-09 18:58:04 +0000
committerGravatar Fabio Bas2012-01-09 18:58:04 +0000
commitdf16cddc8ad1c1edea623c527db6a14b2cc5d866 (patch)
tree5b5a477becfca74a61127b7caad193c5840262a7
parentircview/last read line marker/arrow up: show the tooltip only when the icon i... (diff)
downloadKVIrc-df16cddc8ad1c1edea623c527db6a14b2cc5d866.tar.gz
KVIrc-df16cddc8ad1c1edea623c527db6a14b2cc5d866.tar.bz2
KVIrc-df16cddc8ad1c1edea623c527db6a14b2cc5d866.zip
hopefully fixed win32 compilation
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@6044 17fca916-40b9-46aa-a4ea-0a15b648b75c
-rw-r--r--src/modules/file/libkvifile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/file/libkvifile.cpp b/src/modules/file/libkvifile.cpp
index 49166090f..728ccf610 100644
--- a/src/modules/file/libkvifile.cpp
+++ b/src/modules/file/libkvifile.cpp
@@ -1401,7 +1401,7 @@ static bool file_kvs_fnc_diskSpace(KviKvsModuleFunctionCall * c)
// this for win
#if defined(COMPILE_ON_WINDOWS) || defined(COMPILE_ON_MINGW)
ULARGE_INTEGER free,total;
- GetDiskFreeSpaceExA( (LPCTSTR)path , NULL , &total , &free );
+ GetDiskFreeSpaceExA( (LPCTSTR)pcPath , NULL , &total , &free );
fFree = free.QuadPart;
fTotal = total.QuadPart;
#else