=================================================================== RCS file: /cvs/mandoc/mdoc_html.c,v retrieving revision 1.25 retrieving revision 1.26 diff -u -p -r1.25 -r1.26 --- mandoc/mdoc_html.c 2009/10/07 14:50:28 1.25 +++ mandoc/mdoc_html.c 2009/10/07 15:06:03 1.26 @@ -1,4 +1,4 @@ -/* $Id: mdoc_html.c,v 1.25 2009/10/07 14:50:28 kristaps Exp $ */ +/* $Id: mdoc_html.c,v 1.26 2009/10/07 15:06:03 kristaps Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons * @@ -1624,7 +1624,8 @@ mdoc_fn_pre(MDOC_ARGS) assert(n->child->string); sp = n->child->string; - if ((ep = strchr(sp, ' '))) { + ep = strchr(sp, ' '); + if (NULL != ep) { PAIR_CLASS_INIT(&tag[0], "ftype"); t = print_otag(h, TAG_SPAN, 1, tag);