Skip to content

Commit ab42065

Browse files
authored
Update mod.rs
1 parent 086359d commit ab42065

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/pg/mod.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,9 @@ fn replace_fake_oid(
599599
.as_mut()?
600600
.get_mut(byte_index..)?
601601
.first_chunk_mut::<4>()?;
602-
*serialized_oid = real_oids.get(&u32::from_be_bytes(*serialized_oid))?.to_be_bytes();
602+
*serialized_oid = real_oids
603+
.get(&u32::from_be_bytes(*serialized_oid))?
604+
.to_be_bytes();
603605
Some(())
604606
}
605607

0 commit comments

Comments
 (0)