mirror of
https://github.com/xzeldon/htop.git
synced 2025-07-12 12:14:36 +03:00
Allow meters in text mode to span empty neighbors to the right
Closes: #484
This commit is contained in:

committed by
cgzones

parent
6f6e0ec571
commit
2ec44098f9
4
Object.c
4
Object.c
@ -15,8 +15,6 @@ const ObjectClass Object_class = {
|
||||
.extends = NULL
|
||||
};
|
||||
|
||||
#ifndef NDEBUG
|
||||
|
||||
bool Object_isA(const Object* o, const ObjectClass* klass) {
|
||||
if (!o)
|
||||
return false;
|
||||
@ -29,5 +27,3 @@ bool Object_isA(const Object* o, const ObjectClass* klass) {
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
#endif /* NDEBUG */
|
||||
|
Reference in New Issue
Block a user