bzero -> memset

This commit is contained in:
dingusdev 2024-04-01 08:03:12 -07:00
parent 2968645f2e
commit 55b9f8bbe5

View File

@ -288,7 +288,7 @@ void ScsiHardDisk::inquiry() {
alloc_len); alloc_len);
} }
else { else {
bzero(&this->data_buf[36], alloc_len - 36); memset(&this->data_buf[36], 0, alloc_len - 36);
} }
this->bytes_out = alloc_len; this->bytes_out = alloc_len;