aboutsummaryrefslogtreecommitdiff
path: root/src/lib9pclient/wstat.c
diff options
context:
space:
mode:
authorRuss Cox <rsc@swtch.com>2010-12-07 13:34:11 -0500
committerRuss Cox <rsc@swtch.com>2010-12-07 13:34:11 -0500
commit74dd0321756f968c595487f694fbe74ad00f0624 (patch)
treee551d8fbc2c00f8670c0073c1d794dda19cd2ac7 /src/lib9pclient/wstat.c
parentd10a7ed9a899c17d142021298dd45b4ea9ae6b84 (diff)
downloadplan9port-74dd0321756f968c595487f694fbe74ad00f0624.tar.gz
plan9port-74dd0321756f968c595487f694fbe74ad00f0624.tar.bz2
plan9port-74dd0321756f968c595487f694fbe74ad00f0624.zip
delete 9P2000.u
thanks to Erik Quanstrom R=rsc http://codereview.appspot.com/3469042
Diffstat (limited to 'src/lib9pclient/wstat.c')
-rw-r--r--src/lib9pclient/wstat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib9pclient/wstat.c b/src/lib9pclient/wstat.c
index cc193d25..26e44f8e 100644
--- a/src/lib9pclient/wstat.c
+++ b/src/lib9pclient/wstat.c
@@ -28,11 +28,11 @@ fsdirfwstat(CFid *fid, Dir *d)
int n, nn;
Fcall tx, rx;
- n = sizeD2Mu(d, fid->fs->dotu);
+ n = sizeD2M(d);
a = malloc(n);
if(a == nil)
return -1;
- nn = convD2Mu(d, a, n, fid->fs->dotu);
+ nn = convD2M(d, a, n);
if(n != nn){
werrstr("convD2M and sizeD2M disagree");
free(a);