diff options
author | Harsh Prateek Bora <harsh@linux.vnet.ibm.com> | 2011-03-31 15:49:39 +0530 |
---|---|---|
committer | Eric Van Hensbergen <ericvh@gmail.com> | 2011-04-15 15:26:15 -0500 |
commit | b76225e22ac98070325ee2ba89473c1e1360c4cb (patch) | |
tree | f556275f6238fb395087b2dba3f849ffb0dabd45 /net/9p/protocol.c | |
parent | bd8c8ade6b6f109bc3dce14a8d12013f27f2a590 (diff) | |
download | linux-b76225e22ac98070325ee2ba89473c1e1360c4cb.tar.gz linux-b76225e22ac98070325ee2ba89473c1e1360c4cb.tar.bz2 linux-b76225e22ac98070325ee2ba89473c1e1360c4cb.zip |
net/9p: nwname should be an unsigned int
Signed-off-by: Harsh Prateek Bora <harsh@linux.vnet.ibm.com>
Signed-off-by: Venkateswararao Jujjuri <jvrao@linux.vnet.ibm.com>
Signed-off-by: Eric VAn Hensbergen <ericvh@gmail.com>
Diffstat (limited to 'net/9p/protocol.c')
-rw-r--r-- | net/9p/protocol.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/9p/protocol.c b/net/9p/protocol.c index a7e899740041..b58a501cf3d1 100644 --- a/net/9p/protocol.c +++ b/net/9p/protocol.c @@ -265,7 +265,7 @@ p9pdu_vreadf(struct p9_fcall *pdu, int proto_version, const char *fmt, } break; case 'T':{ - int16_t *nwname = va_arg(ap, int16_t *); + uint16_t *nwname = va_arg(ap, uint16_t *); char ***wnames = va_arg(ap, char ***); errcode = p9pdu_readf(pdu, proto_version, @@ -496,7 +496,7 @@ p9pdu_vwritef(struct p9_fcall *pdu, int proto_version, const char *fmt, } break; case 'T':{ - int16_t nwname = va_arg(ap, int); + uint16_t nwname = va_arg(ap, int); const char **wnames = va_arg(ap, const char **); errcode = p9pdu_writef(pdu, proto_version, "w", |