diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-11-04 00:04:10 -0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-11-04 00:04:10 -0200 |
commit | 56736b7b39218c10efd64f305f7a35df9d4bc0af (patch) | |
tree | d48ededd476a1994cb84fcc865e6346a8f60ba1d /src/directives.h | |
parent | d29c85ef1751cb46c579b3292f676605d9f86951 (diff) | |
download | blogc-56736b7b39218c10efd64f305f7a35df9d4bc0af.tar.gz blogc-56736b7b39218c10efd64f305f7a35df9d4bc0af.tar.bz2 blogc-56736b7b39218c10efd64f305f7a35df9d4bc0af.zip |
content-parser: handle errors (that are handler as warnings) in directives
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 */ |