Procházet zdrojové kódy

aya: fix program array key size

Alessandro Decina před 4 roky
rodič
revize
b6cd813af5
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      aya/src/maps/array/program_array.rs

+ 1 - 1
aya/src/maps/array/program_array.rs

@@ -55,7 +55,7 @@ impl<T: Deref<Target = Map>> ProgramArray<T> {
                 map_type: map_type as u32,
             })?;
         }
-        let expected = mem::size_of::<RawFd>();
+        let expected = mem::size_of::<u32>();
         let size = map.obj.def.key_size as usize;
         if size != expected {
             return Err(MapError::InvalidKeySize { size, expected });