From c338bc959e607295de7449d33f99dcb429f39e8a Mon Sep 17 00:00:00 2001 From: ragusaa <54862477+ragusaa@users.noreply.github.com> Date: Fri, 15 Mar 2024 13:48:02 -0400 Subject: [PATCH] Update libclamav_rust/src/alz.rs Co-authored-by: Micah Snyder --- libclamav_rust/src/alz.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libclamav_rust/src/alz.rs b/libclamav_rust/src/alz.rs index eb9a46ac12..8a38a484cc 100644 --- a/libclamav_rust/src/alz.rs +++ b/libclamav_rust/src/alz.rs @@ -39,11 +39,11 @@ use log::debug; /// File header const ALZ_FILE_HEADER: u32 = 0x015a_4c41; -///Local file header +/// Local file header const ALZ_LOCAL_FILE_HEADER: u32 = 0x015a_4c42; -///Central directory header +/// Central directory header const ALZ_CENTRAL_DIRECTORY_HEADER: u32 = 0x015a_4c43; -///End of Central directory header +/// End of Central directory header const ALZ_END_OF_CENTRAL_DIRECTORY_HEADER: u32 = 0x025a_4c43; /// Error enumerates all possible errors returned by this library.