diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-11-04 01:30:44 -0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-11-04 01:30:44 -0200 |
commit | 1ed6d31c8f97c71fdaa2eef8b575ba14d1437a33 (patch) | |
tree | d48ededd476a1994cb84fcc865e6346a8f60ba1d /src/directives.h | |
parent | 48d8e5538d3b49f41b35dcfb4f5b8ab3d02a10c2 (diff) | |
download | blogc-1ed6d31c8f97c71fdaa2eef8b575ba14d1437a33.tar.gz blogc-1ed6d31c8f97c71fdaa2eef8b575ba14d1437a33.tar.bz2 blogc-1ed6d31c8f97c71fdaa2eef8b575ba14d1437a33.zip |
Revert "Revert "content-parser: handle errors (that are handler as warnings) in directives""
This reverts commit 0fe9ed29207c428deda6c960c81359113f1d3384.
Diffstat (limited to 'src/directives.h')
-rw-r--r-- | src/directives.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/directives.h b/src/directives.h index fa758e2..d03102a 100644 --- a/src/directives.h +++ b/src/directives.h @@ -10,8 +10,9 @@ #define _DIRECTIVES_H #include "utils/utils.h" +#include "error.h" char* blogc_directive_loader(const char *name, const char *argument, - b_trie_t *params); + b_trie_t *params, blogc_error_t **err); #endif /* _DIRECTIVES_H */ |