fix bad compare

This commit is contained in:
iceman1001 2024-05-14 10:02:10 +02:00
commit dd94207ee8

View file

@ -167,7 +167,7 @@ typedef struct _em4x70_cmd_input_verify_auth_t {
static int CmdHelp(const char *Cmd); static int CmdHelp(const char *Cmd);
static void fill_buffer_prng_bytes(void *buffer, size_t byte_count) { static void fill_buffer_prng_bytes(void *buffer, size_t byte_count) {
if (byte_count <= 0) { if (byte_count == 0) {
return; return;
} }