From: Bart Van Assche Date: Mon, 23 Jun 2008 12:41:00 +0000 (+0000) Subject: Changed the unusual "%s", "" back to "". X-Git-Tag: svn/VALGRIND_3_4_0~439 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a2422543c790caa25ec1b93a973492f87f8690fd;p=thirdparty%2Fvalgrind.git Changed the unusual "%s", "" back to "". git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8273 --- diff --git a/exp-drd/drd_barrier.c b/exp-drd/drd_barrier.c index 96e2b74cf5..a7cd281dcc 100644 --- a/exp-drd/drd_barrier.c +++ b/exp-drd/drd_barrier.c @@ -262,13 +262,13 @@ void barrier_pre_wait(const DrdThreadId tid, const Addr barrier, p = barrier_get(barrier); if (p == 0 && barrier_type == gomp_barrier) { - VG_(message)(Vg_UserMsg, "%s", ""); + VG_(message)(Vg_UserMsg, ""); VG_(message)(Vg_UserMsg, "Please verify whether gcc has been configured" " with option --disable-linux-futex."); VG_(message)(Vg_UserMsg, "See also the section about OpenMP in the DRD manual."); - VG_(message)(Vg_UserMsg, "%s", ""); + VG_(message)(Vg_UserMsg, ""); } tl_assert(p);