Commit f54026eb authored by Richard Levitte's avatar Richard Levitte
Browse files

Fix sign vs. unsigned warning.

parent f718b2f4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -457,7 +457,7 @@ int do_fp(BIO *out, unsigned char *buf, BIO *bp, int sep, int binout,
	else 
		{
		BIO_write(out,title,strlen(title));
		for (i=0; i<len; i++)
		for (i=0; (unsigned int)i<len; i++)
			{
			if (sep && (i != 0))
				BIO_printf(out, ":");