diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-05-08 00:29:54 +0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-05-08 00:29:54 +0200 |
commit | a3a51e321ff931b45373afc4f9d0886249359ca0 (patch) | |
tree | dbd2848e416da7c489a326a788aaab924fd9ba07 /src/directives.c | |
parent | 68e4c6ce2cbcc16f5613a7731d4cfac13e4d3354 (diff) | |
download | blogc-a3a51e321ff931b45373afc4f9d0886249359ca0.tar.gz blogc-a3a51e321ff931b45373afc4f9d0886249359ca0.tar.bz2 blogc-a3a51e321ff931b45373afc4f9d0886249359ca0.zip |
directives: declare directive functions as static
Diffstat (limited to 'src/directives.c')
-rw-r--r-- | src/directives.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/directives.c b/src/directives.c index eb6166b..65d2e7b 100644 --- a/src/directives.c +++ b/src/directives.c @@ -39,7 +39,7 @@ blogc_directive_loader(blogc_directive_ctx_t *ctx, blogc_error_t **err) } -char* +static char* blogc_directive_youtube(blogc_directive_ctx_t *ctx, blogc_error_t **err) { if (ctx->argument == NULL) { |