diff options
author | Damjan Marion <damjan.marion@gmail.com> | 2019-01-24 15:36:57 +0100 |
---|---|---|
committer | Damjan Marion <damjan.marion@gmail.com> | 2019-01-24 15:36:57 +0100 |
commit | 22f23ae802f6dc654dbef27340c67773eb8be8c3 (patch) | |
tree | 514a791dcf54c3a0f0de59d79cc2cf81c9fd4955 /src/vlib/buffer.h | |
parent | 478839b9eccabc9abf6717b9b8a8fb545f294bca (diff) |
buffers: fix vector types
Change-Id: I9df96264e30806ac3daf7121f314f34f06232413
Signed-off-by: Damjan Marion <damjan.marion@gmail.com>
Diffstat (limited to 'src/vlib/buffer.h')
-rw-r--r-- | src/vlib/buffer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vlib/buffer.h b/src/vlib/buffer.h index 095c09d10f6..f7fdf208a83 100644 --- a/src/vlib/buffer.h +++ b/src/vlib/buffer.h @@ -178,10 +178,10 @@ typedef union u8x16 as_u8x16[4]; #endif #ifdef CLIB_HAVE_VEC256 - u8x16 as_u8x32[2]; + u8x32 as_u8x32[2]; #endif #ifdef CLIB_HAVE_VEC512 - u8x16 as_u8x64[1]; + u8x64 as_u8x64[1]; #endif } vlib_buffer_t; |