From: Thomas Schwinge Date: Tue, 17 Feb 2015 18:24:07 +0000 (+0100) Subject: libgomp: Make GOMP_PLUGIN_debug actually work... X-Git-Tag: releases/gcc-5.1.0~914 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a2818955d7a57e099a02eb7291cfc13bf35c4fa9;p=thirdparty%2Fgcc.git libgomp: Make GOMP_PLUGIN_debug actually work... libgomp/ * libgomp-plugin.c (GOMP_PLUGIN_debug): Fix typo. From-SVN: r220770 --- diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 2c32d9e94fb7..8477c3bf4644 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,7 @@ +2015-02-17 Thomas Schwinge + + * libgomp-plugin.c (GOMP_PLUGIN_debug): Fix typo. + 2015-02-17 Thomas Schwinge Cesar Philippidis diff --git a/libgomp/libgomp-plugin.c b/libgomp/libgomp-plugin.c index ffb22e938622..f448ba91e40b 100644 --- a/libgomp/libgomp-plugin.c +++ b/libgomp/libgomp-plugin.c @@ -55,7 +55,7 @@ GOMP_PLUGIN_debug (int kind, const char *msg, ...) va_list ap; va_start (ap, msg); - gomp_debug (kind, msg, ap); + gomp_vdebug (kind, msg, ap); va_end (ap); }