From 627ec8b0c3d8a77050eed212b5b335d2bea3bb51 Mon Sep 17 00:00:00 2001 From: Jeevaka Badrappan Date: Fri, 19 Nov 2010 05:57:22 -0800 Subject: util: coding style fixes - rule M6 --- src/util.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/util.c') diff --git a/src/util.c b/src/util.c index 511683a0..4421c3d3 100644 --- a/src/util.c +++ b/src/util.c @@ -462,8 +462,8 @@ static const struct alphabet_conversion_table alphabet_lookup[] = { static int compare_codepoints(const void *a, const void *b) { - const struct codepoint *ca = (const struct codepoint *)a; - const struct codepoint *cb = (const struct codepoint *)b; + const struct codepoint *ca = (const struct codepoint *) a; + const struct codepoint *cb = (const struct codepoint *) b; return (ca->from > cb->from) - (ca->from < cb->from); } @@ -1126,7 +1126,7 @@ char *sim_string_to_utf8(const unsigned char *buffer, int length) if (buffer[i] == 0xff && buffer[i + 1] == 0xff) break; - return g_convert((char *)buffer + 1, i - 1, + return g_convert((char *) buffer + 1, i - 1, "UTF-8//TRANSLIT", "UCS-2BE", NULL, NULL, NULL); case 0x81: -- cgit v1.2.3