libgomp: Make GOMP_PLUGIN_debug actually work...

libgomp/
	* libgomp-plugin.c (GOMP_PLUGIN_debug): Fix typo.

From-SVN: r220770
This commit is contained in:
Thomas Schwinge 2015-02-17 19:24:07 +01:00 committed by Thomas Schwinge
parent 6f3c1d38bf
commit a2818955d7
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2015-02-17 Thomas Schwinge <thomas@codesourcery.com>
* libgomp-plugin.c (GOMP_PLUGIN_debug): Fix typo.
2015-02-17 Thomas Schwinge <thomas@codesourcery.com>
Cesar Philippidis <cesar@codesourcery.com>

View File

@ -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);
}