1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
$NetBSD: patch-ag,v 1.4 2005/03/25 17:40:25 wennmach Exp $
From christos.
--- nnpfs/bsd/nnpfs_vnodeops-common.c.orig 2004-08-09 10:25:39.000000000 -0400
+++ nnpfs/bsd/nnpfs_vnodeops-common.c 2004-12-22 21:34:18.000000000 -0500
@@ -90,7 +90,7 @@
error = nnpfs_message_rpc(nnpfsp->fd, &msg.header, sizeof(msg), p);
if (error == 0)
- error = ((struct nnpfs_message_wakeup *) & msg)->error;
+ error = ((struct nnpfs_message_wakeup *)(void *)& msg)->error;
} else {
goto done;
}
@@ -121,7 +121,7 @@
msg.handle = xn->handle;
error = nnpfs_message_rpc(nnpfsp->fd, &msg.header, sizeof(msg), p);
if (error == 0)
- error = ((struct nnpfs_message_wakeup *) & msg)->error;
+ error = ((struct nnpfs_message_wakeup *)(void *)& msg)->error;
} else {
goto done;
}
@@ -169,7 +169,7 @@
error = nnpfs_message_rpc(nnpfsp->fd, &msg.header, sizeof(msg), p);
if (error == 0)
- error = ((struct nnpfs_message_wakeup *) & msg)->error;
+ error = ((struct nnpfs_message_wakeup *)(void *)& msg)->error;
} while (error == 0);
@@ -227,7 +227,7 @@
error = nnpfs_message_rpc(nnpfsp->fd, &msg.header, sizeof(msg), p);
if (error == 0)
- error = ((struct nnpfs_message_wakeup *) & msg)->error;
+ error = ((struct nnpfs_message_wakeup *)(void *)& msg)->error;
if (error == 0)
xn->flags &= ~NNPFS_DATA_DIRTY;
@@ -490,7 +490,7 @@
NNPFS_TOKEN_CLEAR(xn, NNPFS_ATTR_VALID, NNPFS_ATTR_MASK);
error = nnpfs_message_rpc(nnpfsp->fd, &msg.header, sizeof(msg), p);
if (error == 0)
- error = ((struct nnpfs_message_wakeup *) & msg)->error;
+ error = ((struct nnpfs_message_wakeup *)(void *)& msg)->error;
}
done:
|