mirror of
https://github.com/dingusdev/dingusppc.git
synced 2024-12-22 15:29:58 +00:00
bzero -> memset
This commit is contained in:
parent
2968645f2e
commit
55b9f8bbe5
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user