From: Daniel Golle Date: Wed, 12 Oct 2016 21:24:53 +0000 (+0000) Subject: gns: fix format string X-Git-Tag: initial-import-from-subversion-38251~107 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7b230386d0b65d4d0e7eded214290d122e96e974;p=oweals%2Fgnunet.git gns: fix format string r38079 introduced a debug message which breaks the build if -Werror=format-security is set. --- diff --git a/src/gns/gnunet-service-gns_reverser.c b/src/gns/gnunet-service-gns_reverser.c index 21bbe3578..931dc6809 100644 --- a/src/gns/gnunet-service-gns_reverser.c +++ b/src/gns/gnunet-service-gns_reverser.c @@ -468,6 +468,7 @@ store_reverse (void *cls, if (GNUNET_SYSERR == success) { GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, + "%s\n", emsg); } GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stored records (%s)\n", mynick);