https://bugzilla.rpmfusion.org/show_bug.cgi?id=7410
--- Comment #4 from A. Trande (sagitter) <[email protected]> ---
Building is failing when tested by using `mock -m
fedora+rpmfusion_nonfree-rawhide-x86_64`.
Have you tested your src-rpm from scratch with the tool `mock`?
```
Compiling lamco-wayland v0.2.5
error[E0063]: missing fields `seg_id_block_size` and `va_reserved8` in
initializer of `_VAEncPictureParameterBufferVP9`
-->
/builddir/build/BUILD/lamco-rdp-server-1.3.1-build/lamco-rdp-server-1.3.1/vendor/cros-libva/src/buffer/vp9.rs:406:23
|
406 | Self(Box::new(bindings::VAEncPictureParameterBufferVP9 {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing
`seg_id_block_size` and `va_reserved8`
For more information about this error, try `rustc --explain E0063`.
error: could not compile `cros-libva` (lib) due to 1 previous error
warning: build failed, waiting for other jobs to finish...
```
```
$ rustc --explain E0063
A struct's or struct-like enum variant's field was not provided.
Erroneous code example:
```
struct Foo {
x: i32,
y: i32,
}
fn main() {
let x = Foo { x: 0 }; // error: missing field: `y`
}
```
Each field should be specified exactly once. Example:
```
struct Foo {
x: i32,
y: i32,
}
fn main() {
let x = Foo { x: 0, y: 0 }; // ok!
}
```
--
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug._______________________________________________
rpmfusion-developers mailing list -- [email protected]
To unsubscribe send an email to [email protected]