From a2818955d7a57e099a02eb7291cfc13bf35c4fa9 Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Tue, 17 Feb 2015 19:24:07 +0100 Subject: [PATCH] libgomp: Make GOMP_PLUGIN_debug actually work... libgomp/ * libgomp-plugin.c (GOMP_PLUGIN_debug): Fix typo. From-SVN: r220770 --- libgomp/ChangeLog | 4 ++++ libgomp/libgomp-plugin.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 2c32d9e94fb..8477c3bf464 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 ffb22e93862..f448ba91e40 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); }