summaryrefslogtreecommitdiff
path: root/fd.h
diff options
context:
space:
mode:
Diffstat (limited to 'fd.h')
-rw-r--r--fd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fd.h b/fd.h
index c8d0c34..aa03af9 100644
--- a/fd.h
+++ b/fd.h
@@ -1,6 +1,6 @@
struct fd {
enum { FD_CLOSED, FD_NONE, FD_PIPE } type;
- int count; // reference count
+ int ref; // reference count
char readable;
char writeable;
struct pipe *pipe;