mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
Fix two lines in lzma.h on which the # wasn't at the
beginning of the line.
This commit is contained in:
parent
4ab7601091
commit
2dbdc5befb
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue