view libpurple/plugins/mono/loader/debug-glue.c @ 27988:4e7b8902da90

Add a verb to this sentence, as suggested by F Wolff on the translators mailing list on July 14th
author Mark Doliner <mark@kingant.net>
date Sun, 09 Aug 2009 20:34:29 +0000
parents fd5dfd3c04b5
children a8cc50c2279f
line wrap: on
line source

#include "mono-glue.h"
#include "debug.h"

void purple_debug_glue(int type, MonoString *cat, MonoString *str)
{
	char *ccat;
	char *cstr;
	
	ccat = mono_string_to_utf8(cat);
	cstr = mono_string_to_utf8(str);
	
	purple_debug(type, ccat, "%s", cstr);
	
	g_free(ccat);
	g_free(cstr);
}