diff options
Diffstat (limited to 'src/sys')
-rw-r--r-- | src/sys/include/os/nsvar.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/sys/include/os/nsvar.h b/src/sys/include/os/nsvar.h index 96bc6b7..19030f5 100644 --- a/src/sys/include/os/nsvar.h +++ b/src/sys/include/os/nsvar.h @@ -37,7 +37,6 @@ * * @read: Read callack of this object * @data: Data this object references - * @len: Length of the underlying data * @refcount: Reference count to keep track * * XXX: 'data' is optional and can be NULL. if such is the case, @@ -46,7 +45,6 @@ struct ns_obj { ssize_t(*read)(struct ns_obj *nsop, void *buf, size_t len); void *data; - const size_t len; int refcount; }; |