X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fcclptree.c;h=49f088a8246a830c5dea4240d7b7aa0ee23678a0;hp=920184a2c54988163e025d9d7aea607e415dac3b;hb=6fad29ebb31777f3e01ad80f0c59a7a4dede9989;hpb=f2f3c5ba7374be95aba4f8f35bccd3c4c067e625 diff --git a/src/cclptree.c b/src/cclptree.c index 920184a..49f088a 100644 --- a/src/cclptree.c +++ b/src/cclptree.c @@ -53,7 +53,7 @@ /* CCL print rpn tree - infix notation * Europagate, 1995 * - * $Id: cclptree.c,v 1.3 2004-10-15 00:18:59 adam Exp $ + * $Id: cclptree.c,v 1.4 2004-12-30 00:22:25 adam Exp $ * * Old Europagate Log: * @@ -145,7 +145,7 @@ void ccl_pr_tree_as_qrpn(struct ccl_rpn_node *rpn, FILE *fd_out, int indent) if (*cp == '!') { /* word order specified */ - if (isdigit(cp[1])) + if (isdigit(((const unsigned char *) cp)[1])) fprintf(fd_out, "@prox 0 %s 1 2 known 2", cp+1); else fprintf(fd_out, "@prox 0 1 1 2 known 2"); @@ -153,7 +153,7 @@ void ccl_pr_tree_as_qrpn(struct ccl_rpn_node *rpn, FILE *fd_out, int indent) else if (*cp == '%') { /* word order not specified */ - if (isdigit(cp[1])) + if (isdigit(((const unsigned char *) cp)[1])) fprintf(fd_out, "@prox 0 %s 0 2 known 2", cp+1); else fprintf(fd_out, "@prox 0 1 0 2 known 2"); @@ -195,7 +195,7 @@ static void ccl_pquery_complex (WRBUF w, struct ccl_rpn_node *p) if (*cp == '!') { /* word order specified */ - if (isdigit(cp[1])) + if (isdigit(((const unsigned char *) cp)[1])) wrbuf_printf(w, "@prox 0 %s 1 2 k 2 ", cp+1); else wrbuf_printf(w, "@prox 0 1 1 2 k 2 "); @@ -203,7 +203,7 @@ static void ccl_pquery_complex (WRBUF w, struct ccl_rpn_node *p) else if (*cp == '%') { /* word order not specified */ - if (isdigit(cp[1])) + if (isdigit(((const unsigned char *) cp)[1])) wrbuf_printf(w, "@prox 0 %s 0 2 k 2 ", cp+1); else wrbuf_printf(w, "@prox 0 1 0 2 k 2 ");