diff options
author | Lee Leahy <leroy.p.leahy@intel.com> | 2017-03-09 16:21:34 -0800 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-03-13 15:46:02 +0100 |
commit | e20a3191f58ffb37da3ed6414491d61dbfc7e583 (patch) | |
tree | 2ab3d87fb88eb80f4f9238567feb2ac3e1198ffc /src/lib/lzmadecode.h | |
parent | cdd7686a9dcf5200cabeab806648e87993662619 (diff) |
src/lib: Use tabs instead of spaces
Fix the following errors and warnings detected by checkpatch.pl:
ERROR: code indent should use tabs where possible
ERROR: switch and case should be at the same indent
WARNING: Statements should start on a tabstop
WARNING: please, no spaces at the start of a line
WARNING: please, no space before tabs
WARNING: suspect code indent for conditional statements
WARNING: labels should not be indented
TEST=Build and run on Galileo Gen2
Change-Id: Iebcff26ad41ab6eb0027b871a1c06f3b52dd207c
Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com>
Reviewed-on: https://review.coreboot.org/18732
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/lib/lzmadecode.h')
-rw-r--r-- | src/lib/lzmadecode.h | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/src/lib/lzmadecode.h b/src/lib/lzmadecode.h index 34c9f14c33..892ad403db 100644 --- a/src/lib/lzmadecode.h +++ b/src/lib/lzmadecode.h @@ -38,11 +38,10 @@ typedef UInt32 SizeT; #define LZMA_PROPERTIES_SIZE 5 -typedef struct _CLzmaProperties -{ - int lc; - int lp; - int pb; +typedef struct _CLzmaProperties { + int lc; + int lp; + int pb; }CLzmaProperties; int LzmaDecodeProperties(CLzmaProperties *propsRes, const unsigned char *propsData, int size); @@ -51,17 +50,14 @@ int LzmaDecodeProperties(CLzmaProperties *propsRes, const unsigned char *propsDa #define kLzmaNeedInitId (-2) -typedef struct _CLzmaDecoderState -{ - CLzmaProperties Properties; - CProb *Probs; - - +typedef struct _CLzmaDecoderState { + CLzmaProperties Properties; + CProb *Probs; } CLzmaDecoderState; int LzmaDecode(CLzmaDecoderState *vs, - const unsigned char *inStream, SizeT inSize, SizeT *inSizeProcessed, - unsigned char *outStream, SizeT outSize, SizeT *outSizeProcessed); + const unsigned char *inStream, SizeT inSize, SizeT *inSizeProcessed, + unsigned char *outStream, SizeT outSize, SizeT *outSizeProcessed); #endif |