commit 2ade835740cf73b4cdec5ee790b973ce3e8835a2 parent a4de62b9a8d7357a63a41258c6f7a93c4cbf25c0 Author: Kris Maglione <bsdaemon@wmii.de> Date: Mon, 3 Jul 2006 16:23:07 -0400 Made Fid.omode a signed char rather than char Diffstat:
| libixp/ixp.h | | | 11 | ++++------- |
1 file changed, 4 insertions(+), 7 deletions(-)
diff --git a/libixp/ixp.h b/libixp/ixp.h @@ -251,15 +251,12 @@ typedef struct IXPClient { typedef struct P9Conn P9Conn; typedef struct Fid { P9Conn *conn; - unsigned long fid; - char omode; + Intmap *map; char *uid; - Qid qid; void *aux; - - /* Implementation details */ - /* do not use */ - Intmap *map; + unsigned long fid; + Qid qid; + signed char omode; } Fid; typedef struct P9Req P9Req;