mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
[Refactor] Fix indentation issues.
This commit is contained in:
@@ -52,10 +52,10 @@ public partial class LZFSE
|
||||
public static int DecodeBuffer(byte[] source, byte[] destination) => Native.IsSupported
|
||||
? (int)
|
||||
AARU_lzfse_decode_buffer(destination,
|
||||
(nuint)destination.Length,
|
||||
source,
|
||||
(nuint)source.Length,
|
||||
null)
|
||||
(nuint)destination.Length,
|
||||
source,
|
||||
(nuint)source.Length,
|
||||
null)
|
||||
: 0;
|
||||
|
||||
/// <summary>Compresses a buffer using BZIP2</summary>
|
||||
@@ -65,9 +65,9 @@ public partial class LZFSE
|
||||
public static int EncodeBuffer(byte[] source, byte[] destination) => Native.IsSupported
|
||||
? (int)
|
||||
AARU_lzfse_encode_buffer(destination,
|
||||
(nuint)destination.Length,
|
||||
source,
|
||||
(nuint)source.Length,
|
||||
null)
|
||||
(nuint)destination.Length,
|
||||
source,
|
||||
(nuint)source.Length,
|
||||
null)
|
||||
: 0;
|
||||
}
|
||||
Reference in New Issue
Block a user