summaryrefslogtreecommitdiff
path: root/lib
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
commit402a72d96f1acc4066647d8d2b8984d6d16f0063 (patch)
treef6f9778f7177a4d46aabb32125793ea0635cfcc7 /lib
parent1703b7718f5d86b78b13ca3475d366fecd242b6b (diff)
use %s with fprintf
Diffstat (limited to 'lib')
-rw-r--r--lib/libcrypto/rc4/rc4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libcrypto/rc4/rc4.c b/lib/libcrypto/rc4/rc4.c
index 709b7aff35a..bfb0a3c1f91 100644
--- a/lib/libcrypto/rc4/rc4.c
+++ b/lib/libcrypto/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);
}