BUILD.md: remove leading tabs in code snippets

There no reason to have lead tabs in code snippets.
Leading tabs also make reading a bit harder on mobile devices.
This commit is contained in:
Leonid Pliushch 2019-02-12 14:01:34 +02:00
parent 4fdfc951cb
commit ff8d571378
1 changed files with 2 additions and 2 deletions

View File

@ -120,8 +120,8 @@ Follow the instructions until you get a working build. If a build succeeds after
<dlfcn.h> declares
```C
RTLD_NOW=0; RTLD_LAZY=1; RTLD_LOCAL=0; RTLD_GLOBAL=2; RTLD_NOLOAD=4; // 32-bit
RTLD_NOW=2; RTLD_LAZY=1; RTLD_LOCAL=0; RTLD_GLOBAL=0x00100; RTLD_NOLOAD=4; // 64-bit
RTLD_NOW=0; RTLD_LAZY=1; RTLD_LOCAL=0; RTLD_GLOBAL=2; RTLD_NOLOAD=4; // 32-bit
RTLD_NOW=2; RTLD_LAZY=1; RTLD_LOCAL=0; RTLD_GLOBAL=0x00100; RTLD_NOLOAD=4; // 64-bit
```
These differs from glibc ones in that