summaryrefslogtreecommitdiffstats
path: root/lib/dll/example
diff options
context:
space:
mode:
authorYann Collet <Cyan4973@users.noreply.github.com>2017-01-03 05:09:52 (GMT)
committerGitHub <noreply@github.com>2017-01-03 05:09:52 (GMT)
commit7bb64ff2b69a9f8367de9ab483cdadf42b4c1b65 (patch)
tree35151b46f6ff17ff4fa8c8cfd53ab6e614c8fc97 /lib/dll/example
parent018ddf799917ee5c68b5266d6f42277fa6750080 (diff)
parent16d69c8d039e42defbf7387dd0e4e9318017eb6d (diff)
downloadlz4-7bb64ff2b69a9f8367de9ab483cdadf42b4c1b65.zip
lz4-7bb64ff2b69a9f8367de9ab483cdadf42b4c1b65.tar.gz
lz4-7bb64ff2b69a9f8367de9ab483cdadf42b4c1b65.tar.bz2
Merge pull request #297 from lz4/devv1.7.5
v1.7.5
Diffstat (limited to 'lib/dll/example')
-rw-r--r--lib/dll/example/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dll/example/README.md b/lib/dll/example/README.md
index 4908663..223e473 100644
--- a/lib/dll/example/README.md
+++ b/lib/dll/example/README.md
@@ -39,7 +39,7 @@ The header files from `include\` 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.dll". 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
```