From b43778c961d20c20038212f590107911429dc46d Mon Sep 17 00:00:00 2001 From: Sebastian Lipponer Date: Sat, 8 Feb 2020 09:46:40 +0100 Subject: doc/dlt_for_developers.md: Fix wrong DLT include directive The include directive '#include ' 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 '. This is also in accordance with older DLT documentation. Signed-off-by: Sebastian Lipponer --- doc/dlt_for_developers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') 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 +#include DLT_DECLARE_CONTEXT(ctx); /* declare context */ -- cgit v1.2.1