Mercurial > pidgin
comparison libpurple/plugins/mono/loader/debug-glue.c @ 26224:fd5dfd3c04b5
Fix this compile error:
debug-glue.c: In function ?purple_debug_glue?:
debug-glue.c:12: error: format not a string literal and no format arguments
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Fri, 27 Mar 2009 09:02:22 +0000 |
| parents | 32c366eeeb99 |
| children | a8cc50c2279f |
comparison
equal
deleted
inserted
replaced
| 26223:24463a66f31c | 26224:fd5dfd3c04b5 |
|---|---|
| 7 char *cstr; | 7 char *cstr; |
| 8 | 8 |
| 9 ccat = mono_string_to_utf8(cat); | 9 ccat = mono_string_to_utf8(cat); |
| 10 cstr = mono_string_to_utf8(str); | 10 cstr = mono_string_to_utf8(str); |
| 11 | 11 |
| 12 purple_debug(type, ccat, cstr); | 12 purple_debug(type, ccat, "%s", cstr); |
| 13 | 13 |
| 14 g_free(ccat); | 14 g_free(ccat); |
| 15 g_free(cstr); | 15 g_free(cstr); |
| 16 } | 16 } |
