Thu, 24 Oct 2013 03:37:02 +0530
Merged default branch
| 11660 | 1 | #include "mono-glue.h" |
| 2 | #include "debug.h" | |
| 3 | ||
| 15884 | 4 | void purple_debug_glue(int type, MonoString *cat, MonoString *str) |
| 11660 | 5 | { |
| 6 | char *ccat; | |
| 7 | char *cstr; | |
|
31294
73607ab89c6f
Remove trailing whitespace
Richard Laager <rlaager@pidgin.im>
parents:
26561
diff
changeset
|
8 | |
| 11660 | 9 | ccat = mono_string_to_utf8(cat); |
| 10 | cstr = mono_string_to_utf8(str); | |
|
31294
73607ab89c6f
Remove trailing whitespace
Richard Laager <rlaager@pidgin.im>
parents:
26561
diff
changeset
|
11 | |
|
26561
79ce052c68dd
Fix this compile error:
Mark Doliner <markdoliner@pidgin.im>
parents:
15884
diff
changeset
|
12 | purple_debug(type, ccat, "%s", cstr); |
|
31294
73607ab89c6f
Remove trailing whitespace
Richard Laager <rlaager@pidgin.im>
parents:
26561
diff
changeset
|
13 | |
| 11660 | 14 | g_free(ccat); |
| 15 | g_free(cstr); | |
| 16 | } |