summaryrefslogtreecommitdiff
path: root/doc/dlt_for_developers.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/dlt_for_developers.md')
-rw-r--r--doc/dlt_for_developers.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/dlt_for_developers.md b/doc/dlt_for_developers.md
index d664ab8..355eb03 100644
--- a/doc/dlt_for_developers.md
+++ b/doc/dlt_for_developers.md
@@ -69,7 +69,7 @@ You can thus:
```
find_package(automotive-dlt REQUIRED)
...
-target_link_libraries(myapp PRIVATE Genivi::DLT)
+target_link_libraries(myapp PRIVATE Genivi::dlt)
```
which lets your project automatically gain all necessary compile and link flags
needed by libdlt, including the include directories.
@@ -226,7 +226,8 @@ for(int index=0; index<MAX; index++)
Good example:
```
-for(int index=0; index<MAX; index++)
+int index = 0;
+for(; index<MAX; index++)
{
/* ... */
}