diff options
author | 2014-07-09 06:42:01 +0000 | |
---|---|---|
committer | 2014-07-09 06:42:01 +0000 | |
commit | e852c5582132c07776dbaa28f9dd9a3d6e9d9f6a (patch) | |
tree | 76cd52cac43dd25699789e17f901f0e130571fdd | |
parent | update to lynx 2.8.8rel2, keeping local changes. primarily to get these (diff) | |
download | wireguard-openbsd-e852c5582132c07776dbaa28f9dd9a3d6e9d9f6a.tar.xz wireguard-openbsd-e852c5582132c07776dbaa28f9dd9a3d6e9d9f6a.zip |
format string should be a string literal.
ok beck@ jsing@
-rw-r--r-- | regress/lib/libcrypto/pkcs7/pkcs7test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libcrypto/pkcs7/pkcs7test.c b/regress/lib/libcrypto/pkcs7/pkcs7test.c index 4e612c1e7a6..75d86fb974e 100644 --- a/regress/lib/libcrypto/pkcs7/pkcs7test.c +++ b/regress/lib/libcrypto/pkcs7/pkcs7test.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pkcs7test.c,v 1.1 2014/07/02 16:29:36 jsing Exp $ */ +/* $OpenBSD: pkcs7test.c,v 1.2 2014/07/09 06:42:01 bcook Exp $ */ /* * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> * @@ -102,7 +102,7 @@ x509_store_callback(int ok, X509_STORE_CTX *ctx) static void fatal(const char *msg) { - warnx(msg); + warnx("%s", msg); ERR_print_errors(BIO_new_fd(STDERR_FILENO, 0)); exit(1); } |