diff options
author | rusty <rusty@0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652> | 2013-08-16 03:18:48 +0000 |
---|---|---|
committer | rusty <rusty@0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652> | 2013-08-16 03:18:48 +0000 |
commit | 01d6f201c3b428892f9d8d08c7bedcb6122ef7bb (patch) | |
tree | 88123634f83919fd915d23b6e7c16f116cb79718 | |
parent | 9761928f430412c5b3bd1e879cb1f502e0f987aa (diff) |
2.5.1.5 Device Operation: add missing semicolon.
Ported from draft, commit 3c482cf453d36d7c7f81d6a5be260551243e01d4.
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: https://tools.oasis-open.org/version-control/svn/virtio@8 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
-rw-r--r-- | virtio-spec.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/virtio-spec.txt b/virtio-spec.txt index ced9f9a..281f7ae 100644 --- a/virtio-spec.txt +++ b/virtio-spec.txt @@ -1237,7 +1237,7 @@ case, the packet itself is preceeded by a header: u16 csum_start; u16 csum_offset; /* Only if VIRTIO_NET_F_MRG_RXBUF: */ - u16 num_buffers + u16 num_buffers; }; The controlq is used to control device features such as |