summaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
authorJean Delvare2009-10-02 18:55:19 +0200
committerDavid S. Miller2009-10-02 18:55:19 +0200
commitb607bd900051efc3308c4edc65dd98b34b230021 (patch)
treebf96b07d32932602c4e7db0268e7dbb3f20a9c58 /Documentation
parentnet: splice() from tcp to pipe should take into account O_NONBLOCK (diff)
downloadkernel-qcow2-linux-b607bd900051efc3308c4edc65dd98b34b230021.tar.gz
kernel-qcow2-linux-b607bd900051efc3308c4edc65dd98b34b230021.tar.xz
kernel-qcow2-linux-b607bd900051efc3308c4edc65dd98b34b230021.zip
net: Fix wrong sizeof
Which is why I have always preferred sizeof(struct foo) over sizeof(var). Signed-off-by: Jean Delvare <khali@linux-fr.org> Acked-by: Randy Dunlap <rdunlap@xenotime.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/networking/timestamping/timestamping.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/networking/timestamping/timestamping.c b/Documentation/networking/timestamping/timestamping.c
index 43d143104210..a7936fe8444a 100644
--- a/Documentation/networking/timestamping/timestamping.c
+++ b/Documentation/networking/timestamping/timestamping.c
@@ -381,7 +381,7 @@ int main(int argc, char **argv)
memset(&hwtstamp, 0, sizeof(hwtstamp));
strncpy(hwtstamp.ifr_name, interface, sizeof(hwtstamp.ifr_name));
hwtstamp.ifr_data = (void *)&hwconfig;
- memset(&hwconfig, 0, sizeof(&hwconfig));
+ memset(&hwconfig, 0, sizeof(hwconfig));
hwconfig.tx_type =
(so_timestamping_flags & SOF_TIMESTAMPING_TX_HARDWARE) ?
HWTSTAMP_TX_ON : HWTSTAMP_TX_OFF;