diff options
| -rw-r--r-- | parse.c | 2 | 
1 files changed, 2 insertions, 0 deletions
| @@ -1,4 +1,5 @@  #include "parse.h" +#include "err.h"  int parse_doc(enum doc_type type, struct doc *d, const buf_t *b) {  	switch (type) { @@ -14,6 +15,7 @@ int parse_doc(enum doc_type type, struct doc *d, const buf_t *b) {  		}  		goto ok;  	default: +		perr("unsupported doctype");  		goto err;  	}  ok: | 
