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 1be1cf0..93f43bb 100644
--- a/fd.h
+++ b/fd.h
@@ -2,7 +2,7 @@ struct fd {
enum { FD_CLOSED, FD_NONE, FD_PIPE, FD_FILE } type;
int ref; // reference count
char readable;
- char writeable;
+ char writable;
struct pipe *pipe;
struct inode *ip;
uint off;