From 056d0c68fbd56e3ce25fe3ad8c58ade0ab30a1b4 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sun, 8 Mar 2009 11:41:22 +0000 Subject: BROKEN CHECK-IN. Wide-ranging updates. Removed libmdoc internal argv limit (all dynamic). Removed "data" union in mdoc_node (to be selectively re-added). --- xstd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xstd.c') diff --git a/xstd.c b/xstd.c index 66aba8bd..8326aa2e 100644 --- a/xstd.c +++ b/xstd.c @@ -103,7 +103,7 @@ xstrlcpys(char *buf, const struct mdoc_node *n, size_t sz) for ( ; n; n = n->next) { assert(MDOC_TEXT == n->type); - p = n->data.text.string; + p = n->string; if ( ! xstrlcat(buf, p, sz)) return(0); if (n->next && ! xstrlcat(buf, " ", sz)) -- cgit