shithub: libvpx

Download patch

ref: f74e0229d5575af20498a9dbf48f1d305dfc8719
parent: d55682c2aadbca664727fde886d42d39f7cbb5cd
author: Sigrid Solveig Haflínudóttir <ftrvxmtrx@gmail.com>
date: Sun Aug 15 04:54:24 EDT 2021

plan9: usize is now 64 bit on amd64, which means alignment is wrong. change it to ulong

--- a/plan9/vpx_config.h
+++ b/plan9/vpx_config.h
@@ -24,7 +24,7 @@
 typedef s32int int32_t;
 typedef s64int int64_t;
 
-typedef usize size_t;
+typedef ulong size_t;
 typedef long off_t;
 typedef intptr ptrdiff_t;
 typedef intptr intptr_t;