diff options
author | Vicent Marti <tanoku@gmail.com> | 2014-09-04 18:49:33 +0200 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2014-09-09 03:39:16 +0200 |
commit | 19ba82d7a30bd999a25fc303a8516056880abc9d (patch) | |
tree | 9e44eae3e263718d35bef9c99220a8ef7d1b9fb1 /src/main.c | |
parent | 9e4855365b920c2a80b0f1ab6937280f0b504334 (diff) |
Rename node_block
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -12,7 +12,7 @@ void print_usage() printf(" --version Print version\n"); } -static void print_document(block *document, bool ast) +static void print_document(node_block *document, bool ast) { strbuf html = GH_BUF_INIT; @@ -30,7 +30,7 @@ int main(int argc, char *argv[]) int i, numfps = 0; bool ast = false; int files[argc]; - block *document = NULL; + node_block *document = NULL; for (i = 1; i < argc; i++) { if (strcmp(argv[i], "--version") == 0) { |