fix typpo
This commit is contained in:
parent
2529765df3
commit
5a57122891
|
@ -65,7 +65,7 @@ unsigned int Buffer::expand(unsigned int count) {
|
||||||
int Buffer::read_into(int sd, unsigned int bytes) {
|
int Buffer::read_into(int sd, unsigned int bytes) {
|
||||||
// Make sure there is enough space
|
// Make sure there is enough space
|
||||||
this->expand(bytes);
|
this->expand(bytes);
|
||||||
Debug(3, "Reading %u btes", bytes);
|
Debug(3, "Reading %u bytes", bytes);
|
||||||
int bytes_read = ::read(sd, mTail, bytes);
|
int bytes_read = ::read(sd, mTail, bytes);
|
||||||
if (bytes_read > 0) {
|
if (bytes_read > 0) {
|
||||||
mTail += bytes_read;
|
mTail += bytes_read;
|
||||||
|
|
Loading…
Reference in New Issue