diff options
author | rsc <devnull@localhost> | 2006-05-05 15:19:10 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2006-05-05 15:19:10 +0000 |
commit | cd14fd5f81596287493e46fe0045c04030c3ed4d (patch) | |
tree | d54c07927bd9a6c8942fd5b6310f8792ccd96c79 /src/libsunrpc | |
parent | 6df24754e468192b309ea5b5fd6d7ba8c905756d (diff) | |
download | plan9port-cd14fd5f81596287493e46fe0045c04030c3ed4d.tar.gz plan9port-cd14fd5f81596287493e46fe0045c04030c3ed4d.tar.bz2 plan9port-cd14fd5f81596287493e46fe0045c04030c3ed4d.zip |
poor type-punned pointer
Diffstat (limited to 'src/libsunrpc')
-rw-r--r-- | src/libsunrpc/nfs3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsunrpc/nfs3.c b/src/libsunrpc/nfs3.c index 836f0bf2..b0c8d452 100644 --- a/src/libsunrpc/nfs3.c +++ b/src/libsunrpc/nfs3.c @@ -2941,7 +2941,7 @@ nfs3entrysize(Nfs3Entry *x) static int sunstringvpack(uchar *a, uchar *ea, uchar **pa, char **s, u32int n) { - return sunvaropaquepack(a, ea, pa, (uchar**)&s, &n, -1); + return sunvaropaquepack(a, ea, pa, (uchar**)(void*)&s, &n, -1); } int nfs3entrypack(uchar *a, uchar *ea, uchar **pa, Nfs3Entry *x) |