aboutsummaryrefslogtreecommitdiff
path: root/lib/README.md
diff options
context:
space:
mode:
authorPrzemyslaw Skibinski <inikep@gmail.com>2016-11-22 11:14:11 +0100
committerPrzemyslaw Skibinski <inikep@gmail.com>2016-11-22 11:14:11 +0100
commit65a542579b4849a6b064c8c8b3baf16e31119294 (patch)
treef355af36c8975142393c2d433f646e3415242b51 /lib/README.md
parent2cbd0233b8f018ed97f3e7e07eacb38d896ab261 (diff)
downloadlz4-65a542579b4849a6b064c8c8b3baf16e31119294.tar.gz
updated README.md
Diffstat (limited to 'lib/README.md')
-rw-r--r--lib/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/README.md b/lib/README.md
index 18793d46..b40442c4 100644
--- a/lib/README.md
+++ b/lib/README.md
@@ -47,7 +47,7 @@ The header files `lz4.h`, `lz4hc.h`, `lz4frame.h` and the dynamic library
`dll\liblz4.dll` are required to compile a project using gcc/MinGW.
The dynamic library has to be added to linking options.
It means that if a project that uses LZ4 consists of a single `test-dll.c`
-file it should be compiled with "liblz4.lib". For example:
+file it should be linked with `dll\liblz4.dll`. For example:
```
gcc $(CFLAGS) -Iinclude/ test-dll.c -o test-dll dll\liblz4.dll
```