remove useless semicolon

the macro LTC_MUTEX_TYPE already contains a semicolon
see https://github.com/libtom/libtomcrypt/blob/develop/src/headers/tomcrypt_custom.h#L552
This commit is contained in:
Francois Perrad 2017-04-29 17:52:27 +02:00
parent 253f3c45e1
commit 7e72dafe5f

View File

@ -66,7 +66,7 @@ typedef struct {
#endif
};
short ready; /* ready flag 0-1 */
LTC_MUTEX_TYPE(lock); /* lock */
LTC_MUTEX_TYPE(lock) /* lock */
} prng_state;
/** PRNG descriptor */