summaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
authorsblondon <stephane.blondon@gmail.com>2021-10-28 15:01:36 +0200
committerGitHub <noreply@github.com>2021-10-28 15:01:36 +0200
commit5a5e4e303629d49bc09a2ef2614c1e0374c23dfb (patch)
treed03888f8d0a981e402fee356cac21cd69cd8df72 /readme.md
parent076f815cece59e0a0ee08237c8fbba75465452b6 (diff)
Fix preload path in documentation example
The .so files are usually in `/usr/lib`, not `/usr/bin`. The updated path is the same as below in the text.
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/readme.md b/readme.md
index cdb1b82..cf984c6 100644
--- a/readme.md
+++ b/readme.md
@@ -18,7 +18,7 @@ Latest stable tag: `v1.7.2` (2021-06-17).
mimalloc is a drop-in replacement for `malloc` and can be used in other programs
without code changes, for example, on dynamically linked ELF-based systems (Linux, BSD, etc.) you can use it as:
```
-> LD_PRELOAD=/usr/bin/libmimalloc.so myprogram
+> LD_PRELOAD=/usr/lib/libmimalloc.so myprogram
```
It also has an easy way to override the default allocator in [Windows](#override_on_windows). Notable aspects of the design include: