X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/5dd6771b28c257af405d7248639ed0e3bcdce38b..94187a80bd60baab4b9c4b949ad820d730578123:/sbr/strindex.c diff --git a/sbr/strindex.c b/sbr/strindex.c index 9a1e4fe7..b2bc9ff9 100644 --- a/sbr/strindex.c +++ b/sbr/strindex.c @@ -1,6 +1,4 @@ - -/* - * strindex.c -- "unsigned" lexical index +/* strindex.c -- "unsigned" lexical index * * This code is Copyright (c) 2002, by the authors of nmh. See the * COPYRIGHT file in the root directory of the nmh distribution for @@ -19,7 +17,7 @@ stringdex (char *p1, char *p2) for (p = p2; *p; p++) if (uprf (p, p1)) - return (p - p2); + return p - p2; return -1; }