]> git.sur5r.net Git - openldap/commitdiff
Remove lint.
authorKurt Zeilenga <kurt@openldap.org>
Mon, 23 Nov 1998 00:00:48 +0000 (00:00 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Mon, 23 Nov 1998 00:00:48 +0000 (00:00 +0000)
clients/ud/util.c

index a5f663040da936a6e6fb683f6dd9ef057c3267bf..a0bd8497904a27db77d91e9e5abca0c4361e82c2 100644 (file)
@@ -281,7 +281,7 @@ format( char *str, int width, int lead )
         */
        s = original = strdup(str);
        for (;;) {
-               if ((strlen(s) + lead) < width) {
+               if (((int) strlen(s) + lead) < width) {
                        printf("%s%s\n", leader, s);
                        Free(leader);
                        Free(original);
@@ -352,7 +352,7 @@ format2(
                i = "";
 
        /* now do the first line */
-       if ((strlen(s) + strlen(first_tag) + first_indent) < width) {
+       if (((int) strlen(s) + (int) strlen(first_tag) + first_indent) < width) {
                printf("%s%s%s\n", fi, first_tag, s);
                Free(fi);
                Free(i);
@@ -391,7 +391,7 @@ format2(
 
        /* now do all of the other lines */
        for (;;) {
-               if ((strlen(s) + strlen(tag) + indent) < width) {
+               if (((int) strlen(s) + (int) strlen(tag) + indent) < width) {
                        printf("%s%s%s\n", i, tag, s);
                        Free(fi);
                        Free(i);