diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-07-07 20:54:57 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2000-07-07 20:54:57 +0000 |
commit | 402a72d96f1acc4066647d8d2b8984d6d16f0063 (patch) | |
tree | f6f9778f7177a4d46aabb32125793ea0635cfcc7 /lib/libcrypto | |
parent | 1703b7718f5d86b78b13ca3475d366fecd242b6b (diff) |
use %s with fprintf
Diffstat (limited to 'lib/libcrypto')
-rw-r--r-- | lib/libcrypto/rc4/rc4.c | 2 |
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); } |