From 8ddbe595788967b6ba3807daa770ebeee9f23f85 Mon Sep 17 00:00:00 2001 From: Gary Tierney Date: Wed, 28 Feb 2024 21:03:45 +0000 Subject: [PATCH] Add CODEOWNERS file --- CODEOWNERS | 1 + format/src/io_ext/read.rs | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 CODEOWNERS diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 0000000..1dc8c95 --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1 @@ +*.rs @vswarte @garyttierney \ No newline at end of file diff --git a/format/src/io_ext/read.rs b/format/src/io_ext/read.rs index fad1f3a..6066517 100644 --- a/format/src/io_ext/read.rs +++ b/format/src/io_ext/read.rs @@ -66,7 +66,9 @@ impl ReadFormatsExt for R { let padding = self.read_u8()?; if padding != 0 { - return Err(std::io::Error::other("Expecting padding bytes, found non-zero value")); + return Err(std::io::Error::other( + "Expecting padding bytes, found non-zero value", + )); } }