X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=tools%2Fdoc_extract.c;h=5a48b79f50d048c706a5145392450fecfc936c99;hp=c8ecbf8e6965240c02630884bc64b9af44ccfdf6;hb=bffcda423dca2b3652ec7c6dc8e3f37e3d981be7;hpb=44c480c492c4596801261d748c5e3339c30f1f7e diff --git a/tools/doc_extract.c b/tools/doc_extract.c index c8ecbf8e..5a48b79f 100644 --- a/tools/doc_extract.c +++ b/tools/doc_extract.c @@ -16,7 +16,7 @@ int main(int argc, char *argv[]) if (argc < 3) errx(1, "Usage: doc_extract [--function=] TYPE ...\n" - "Where TYPE is functions|author|licence|maintainer|summary|description|example|all"); + "Where TYPE is functions|author|license|maintainer|summary|description|example|all"); if (strstarts(argv[1], "--function=")) { function = argv[1] + strlen("--function="); @@ -27,16 +27,15 @@ int main(int argc, char *argv[]) type = argv[1]; for (i = 2; i < argc; i++) { char *file, **lines; - unsigned int num; struct list_head *list; struct doc_section *d; file = grab_file(NULL, argv[i], NULL); if (!file) err(1, "Reading file %s", argv[i]); - lines = strsplit(file, file, "\n", &num); + lines = strsplit(file, file, "\n"); - list = extract_doc_sections(lines, num); + list = extract_doc_sections(lines); if (list_empty(list)) errx(1, "No documentation in file %s", argv[i]); talloc_free(file);