diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-02-03 12:39:47 -0700 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-02-03 15:01:30 -0700 |
commit | cb22bee6679c593e08278a19627ed459e2d3aac5 (patch) | |
tree | 089e4062ca30f2bc940126931d616d152140f40a | |
parent | 1e2b67047da4ad0f567ef5956f813b2d33b3cfa6 (diff) |
lib9p: srv.c: Use the correct types for fidmap and reqmap keys
-rw-r--r-- | lib9p/srv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib9p/srv.c b/lib9p/srv.c index f2d1315..465e0bf 100644 --- a/lib9p/srv.c +++ b/lib9p/srv.c @@ -53,13 +53,13 @@ struct _srv_fidinfo { }; #define NAME fidmap -#define KEY_T uint32_t +#define KEY_T lib9p_fid_t #define VAL_T struct _srv_fidinfo #define CAP CONFIG_9P_MAX_FIDS #include "map.h" #define NAME reqmap -#define KEY_T uint32_t +#define KEY_T lib9p_tag_t #define VAL_T struct _lib9p_srv_req * #define CAP CONFIG_9P_MAX_REQS #include "map.h" |