diff options
| author | FreeArtMan <dos21h@gmail.com> | 2019-09-29 11:25:19 +0100 | 
|---|---|---|
| committer | FreeArtMan <dos21h@gmail.com> | 2019-09-29 11:25:19 +0100 | 
| commit | ae51162f5f809937b36b09c186ff5348e861e347 (patch) | |
| tree | f37a0a63730355c74fd4a4017dbd6c21b56e702b /libbuf | |
| parent | f85459ba90ab2725e017b1c278e708127b264a19 (diff) | |
| download | ihe-ae51162f5f809937b36b09c186ff5348e861e347.tar.gz ihe-ae51162f5f809937b36b09c186ff5348e861e347.zip | |
Fixed size issues for dump commands
Diffstat (limited to 'libbuf')
| -rw-r--r-- | libbuf/buf.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/libbuf/buf.c b/libbuf/buf.c index 83457e9..b62eb13 100644 --- a/libbuf/buf.c +++ b/libbuf/buf.c @@ -514,7 +514,7 @@ bool Buf::isempty()  		return true;  	if (this->buf_size <= 0)  		return true; -	return true; +	return false;  }  int Buf::empty() | 
