summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2000-07-07 20:54:57 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2000-07-07 20:54:57 +0000
commit166500e37dbedc10646a7d57241ffc511009b8aa (patch)
treea2b2296631f63b3c2f9c42603456374b10f9a499
parent586a3526f0e1a214bed75eb3d9d17af50edd522f (diff)
use %s with fprintf
-rw-r--r--lib/libssl/src/crypto/rc4/rc4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libssl/src/crypto/rc4/rc4.c b/lib/libssl/src/crypto/rc4/rc4.c
index 709b7aff35a..bfb0a3c1f91 100644
--- a/lib/libssl/src/crypto/rc4/rc4.c
+++ b/lib/libssl/src/crypto/rc4/rc4.c
@@ -113,7 +113,7 @@ int main(int argc, char *argv[])
{
bad:
for (pp=usage; (*pp != NULL); pp++)
- fprintf(stderr,*pp);
+ fprintf(stderr,"%s",*pp);
exit(1);
}