changed checkExitCode's type to UC

This commit is contained in:
Václav Šmejkal 2022-11-03 17:17:15 +01:00
parent 0702dd26cd
commit c1c0e41a33
No known key found for this signature in database
GPG Key ID: FD749A97DF2D5E19
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@
outputFlags decryptText(char *text, char *keyNew) outputFlags decryptText(char *text, char *keyNew)
{ {
//CHECK VARIABLE //CHECK VARIABLE
int checkExitCode; unsigned char checkExitCode;
//TIME VARIABLES //TIME VARIABLES
struct timeval startTime; struct timeval startTime;

View File

@ -11,7 +11,7 @@
outputFlags encryptText(char *text, char *keyNew) outputFlags encryptText(char *text, char *keyNew)
{ {
//CHECK VARIABLE //CHECK VARIABLE
int checkExitCode; unsigned char checkExitCode;
//TIME VARIABLES //TIME VARIABLES
struct timeval startTime; struct timeval startTime;