diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2009-01-31 10:02:52 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2009-01-31 10:02:52 +0200 |
commit | 2dbdc5befb33c3703e4609809101047c67caf343 (patch) | |
tree | 1e741b3eff80d00762bb5b98dea5dcf161145ffa /src/liblzma/api | |
parent | Add support for using liblzma headers in MSVC, which has no (diff) | |
download | xz-2dbdc5befb33c3703e4609809101047c67caf343.tar.xz |
Fix two lines in lzma.h on which the # wasn't at the
beginning of the line.
Diffstat (limited to 'src/liblzma/api')
-rw-r--r-- | src/liblzma/api/lzma.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/liblzma/api/lzma.h b/src/liblzma/api/lzma.h index f5222a53..24bdc74e 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 <stddef.h> +# include <stddef.h> /* * 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; |