summaryrefslogtreecommitdiffstats
path: root/unit/test-util.c
diff options
context:
space:
mode:
authorJeevaka Badrappan <jeevaka.badrappan@elektrobit.com>2011-01-12 12:52:17 +0200
committerMarcel Holtmann <marcel@holtmann.org>2011-01-12 08:06:59 -0800
commit2b8b08c1343bb3b8c294aa485a0b642017cd64ce (patch)
treed2e81197344b6cf51c6a5bedebe3881065848bff /unit/test-util.c
parent04a8d58515e2b06b9cce3d431dc697a7286a645e (diff)
downloadofono-2b8b08c1343bb3b8c294aa485a0b642017cd64ce.tar.bz2
unit: M15 coding style fix
Diffstat (limited to 'unit/test-util.c')
-rw-r--r--unit/test-util.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/unit/test-util.c b/unit/test-util.c
index 057bb76e..c0d0bf1e 100644
--- a/unit/test-util.c
+++ b/unit/test-util.c
@@ -341,7 +341,7 @@ unsigned short gsm_turkish_to_unicode_map[] =
((c) < 0x80 ? 1 : \
((c) < 0x800 ? 2 : 3))
-static void test_invalid()
+static void test_invalid(void)
{
long nwritten;
long nread;
@@ -382,7 +382,7 @@ static void test_invalid()
g_assert(nread == 0);
}
-static void test_valid()
+static void test_valid(void)
{
long nwritten;
long nread;
@@ -444,7 +444,7 @@ static void test_valid()
}
}
-static void test_valid_turkish()
+static void test_valid_turkish(void)
{
long nwritten;
long nread;
@@ -515,7 +515,7 @@ static const char expected[] = "It is easy to read text messages via AT "
"commands.";
static int reported_text_size = 49;
-static void test_decode_encode()
+static void test_decode_encode(void)
{
const char *sms = hex_packed;
unsigned char *decoded, *packed;
@@ -614,7 +614,7 @@ static void test_decode_encode()
g_free(hex_packed);
}
-static void test_pack_size()
+static void test_pack_size(void)
{
unsigned char c1[] = { 'a' };
unsigned char c2[] = { 'a', 'b' };
@@ -676,7 +676,7 @@ static void test_pack_size()
g_free(packed);
}
-static void test_cr_handling()
+static void test_cr_handling(void)
{
unsigned char c7[] = { 'a', 'b', 'c', 'd', 'e', 'f', 'g' };
unsigned char c7_expected[] = { 'a', 'b', 'c', 'd', 'e', 'f', 'g',
@@ -739,7 +739,7 @@ static void test_cr_handling()
g_free(packed);
}
-static void test_sms_handling()
+static void test_sms_handling(void)
{
unsigned char c7[] = { 'a', 'b', 'c', 'd', 'e', 'f', 'g' };
@@ -780,7 +780,7 @@ static void test_sms_handling()
g_free(packed);
}
-static void test_offset_handling()
+static void test_offset_handling(void)
{
unsigned char c7[] = { 'a', 'b', 'c', 'd', 'e', 'f', 'g' };
unsigned char c8[] = { 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h' };
@@ -880,7 +880,7 @@ static unsigned char sim_82_1[] = { 0x82, 0x05, 0x04, 0x00, 0x2D, 0xB3, 0xB4,
static unsigned char sim_82_2[] = { 0x82, 0x05, 0xD8, 0x00, 0x2D, 0xB3, 0xB4,
0x2D, 0x31 };
-static void test_sim()
+static void test_sim(void)
{
char *utf8;
@@ -930,7 +930,7 @@ static void test_sim()
g_assert(utf8 == NULL);
}
-static void test_unicode_to_gsm()
+static void test_unicode_to_gsm(void)
{
long nwritten;
long nread;