summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSebastian Lipponer <mail@sebastianlipponer.de>2020-02-08 09:46:40 +0100
committerSaya Sugiura <39760799+ssugiura@users.noreply.github.com>2020-02-11 18:24:18 +0900
commitb43778c961d20c20038212f590107911429dc46d (patch)
tree2922011bd53a1324fab256760600df5c8e0ebe29 /doc
parentad3ac30b779097c282a7d52c72e3da23872ae6d1 (diff)
downloadDLT-daemon-b43778c961d20c20038212f590107911429dc46d.tar.gz
doc/dlt_for_developers.md: Fix wrong DLT include directive
The include directive '#include <dlt/dlt.h>' that is stated in the developer guide (see 'doc/dlt_for_developers.md') does not work when the include path is set via the pkg-config file 'automotive-dlt.pc'. The include path set via this file requires users to use the include directive '#include <dlt.h>'. This is also in accordance with older DLT documentation. Signed-off-by: Sebastian Lipponer <mail@sebastianlipponer.de>
Diffstat (limited to 'doc')
-rw-r--r--doc/dlt_for_developers.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/dlt_for_developers.md b/doc/dlt_for_developers.md
index 9f3f09c..868aa90 100644
--- a/doc/dlt_for_developers.md
+++ b/doc/dlt_for_developers.md
@@ -27,7 +27,7 @@ minimal code example. Detailed information about the API can be found later in
this document.
```
-#include <dlt/dlt.h>
+#include <dlt.h>
DLT_DECLARE_CONTEXT(ctx); /* declare context */