From: Lasse Collin Date: Sat, 31 Jan 2009 08:02:52 +0000 (+0200) Subject: Fix two lines in lzma.h on which the # wasn't at the X-Git-Tag: upstream/5.1.3~608 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2dbdc5befb33c3703e4609809101047c67caf343;p=platform%2Fupstream%2Fxz.git Fix two lines in lzma.h on which the # wasn't at the beginning of the line. --- diff --git a/src/liblzma/api/lzma.h b/src/liblzma/api/lzma.h index f5222a5..24bdc74 100644 --- a/src/liblzma/api/lzma.h +++ b/src/liblzma/api/lzma.h @@ -65,7 +65,7 @@ * I suppose this works portably also in C++. Note that in C++, * we need to get size_t into the global namespace. */ - #include +# include /* * Skip inttypes.h if we already have all the required macros. If we @@ -79,7 +79,7 @@ * from MSVC, so we need to define the required standard * integer types here. */ - #if defined(_WIN32) && defined(_MSC_VER) +# if defined(_WIN32) && defined(_MSC_VER) typedef unsigned __int8 uint8_t; typedef unsigned __int32 uint32_t; typedef unsigned __int64 uint64_t;