aboutsummaryrefslogtreecommitdiff
path: root/libqcdm
diff options
context:
space:
mode:
authorDan Williams <dcbw@redhat.com>2016-01-13 15:29:50 -0600
committerDan Williams <dcbw@redhat.com>2016-01-13 15:31:59 -0600
commit99ae6777893d0b149cbefac3f290c63c47e29f42 (patch)
tree1368ee2c5ac74556f7ff0bd5ec477e7e01c11f9e /libqcdm
parent6a60090d681df313b9416597325d60effed006cf (diff)
libqcdm: fix mixed whitespace in test-qcdm.c
Diffstat (limited to 'libqcdm')
-rw-r--r--libqcdm/tests/test-qcdm.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/libqcdm/tests/test-qcdm.c b/libqcdm/tests/test-qcdm.c
index 2a21522d..59ca3a86 100644
--- a/libqcdm/tests/test-qcdm.c
+++ b/libqcdm/tests/test-qcdm.c
@@ -35,15 +35,15 @@ typedef GTestFixtureFunc TCFunc;
static TestData *
test_data_new (const char *port)
{
- TestData *d;
+ TestData *d;
- d = g_malloc0 (sizeof (TestData));
- g_assert (d);
+ d = g_malloc0 (sizeof (TestData));
+ g_assert (d);
if (port)
d->com_data = test_com_setup (port);
- return d;
+ return d;
}
static void
@@ -52,7 +52,7 @@ test_data_free (TestData *d)
if (d->com_data)
test_com_teardown (d->com_data);
- g_free (d);
+ g_free (d);
}
int main (int argc, char **argv)
@@ -118,9 +118,9 @@ int main (int argc, char **argv)
g_test_suite_add (suite, TESTCASE (test_com_gsm_subsys_state_info, data->com_data));
}
- result = g_test_run ();
+ result = g_test_run ();
- test_data_free (data);
+ test_data_free (data);
- return result;
+ return result;
}