fix: typo

This commit is contained in:
Šebestíček 2022-03-13 19:06:45 +01:00 committed by GitHub
parent 25d11590b8
commit ad1e8e8f9b
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;
} }