diff options
| author | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-02-14 14:14:17 +0100 |
|---|---|---|
| committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-02-14 14:14:17 +0100 |
| commit | dd4a487b0e1988ba9b61a836a84205a966e40f5a (patch) | |
| tree | beac7991e22b9421e9d01dda7ec2ee284f1c730d | |
| parent | 80deec0a7b49bd5d51eb1f6552cf5838bcf5d121 (diff) | |
| download | plan9front-dd4a487b0e1988ba9b61a836a84205a966e40f5a.tar.xz | |
webfs: fix compiler warning
| -rw-r--r-- | sys/src/cmd/webfs/fs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/webfs/fs.c b/sys/src/cmd/webfs/fs.c index 8aedbff5c..52a7c5092 100644 --- a/sys/src/cmd/webfs/fs.c +++ b/sys/src/cmd/webfs/fs.c @@ -167,7 +167,7 @@ fsmkqid(Qid *q, int level, void *aux) case Qclient: q->type = QTDIR; default: - q->path = (level<<24) | (((ulong)aux ^ time0) & 0x00ffffff); + q->path = (level<<24) | (((uintptr)aux ^ time0) & 0x00ffffff); } } |
