1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #5806 from makomi/base64

sys/base64: fix variableScope (cppcheck)
This commit is contained in:
BytesGalore 2016-09-05 08:48:52 +02:00 committed by GitHub
commit 5893c9ba0f

View File

@ -83,9 +83,9 @@ int base64_encode(unsigned char *data_in, size_t data_in_size, \
unsigned char nNum = 0;
int nLst = 0;
int njump = 0;
unsigned char tmpval;
for (int i = 0; i < (int)(data_in_size); ++i) {
unsigned char tmpval;
njump++;
tmpval = *(data_in + i);