Removed unused variable which caused Linux build to fail

This commit is contained in:
Jaroslaw Lewandowski 2013-05-29 10:15:31 +02:00
parent 3f7c506638
commit 94eef4d235
1 changed files with 1 additions and 1 deletions

View File

@ -409,7 +409,7 @@ void CCUserDefault::setDataForKey(const char* pKey, const CCData& value) {
char *encodedData = 0;
int enclodedDataLen = base64Encode(value.getBytes(), value.getSize(), &encodedData);
base64Encode(value.getBytes(), value.getSize(), &encodedData);
setValueForKey(pKey, encodedData);