Merge pull request from SebestikCZ

fix: typo
This commit is contained in:
Václav Šmejkal 2022-03-18 17:56:04 +00:00 committed by GitHub
commit 1b63f052ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,7 +23,7 @@ decryptText(char *text, char *key)
numberBuffer = 1; numberBuffer = 1;
//GET LENTGH OF returningText AND textKeyChain //GET LENGHT OF returningText AND textKeyChain
for (int i = 0; i < strlen(text); i++) for (int i = 0; i < strlen(text); i++)
{ {
if (text[i] == ENCRYPTION_SEPARATOR) numberBuffer++; if (text[i] == ENCRYPTION_SEPARATOR) numberBuffer++;
@ -100,4 +100,4 @@ decryptText(char *text, char *key)
} }
return returningText; return returningText;
} }