diff options
author | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2015-08-06 00:31:09 +0200 |
---|---|---|
committer | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2015-08-06 00:44:19 +0200 |
commit | 7d6884b65e6ea7317346d29bc2f6c9ba051a0cac (patch) | |
tree | a887c3b285cacf9102ce14d82ffa0948643dd0b9 /src/test | |
parent | 511d2ffc8cc4e6c6b528aa96c4096f57bc52226e (diff) |
tree-wide: fix indentation
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/test-strv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/test-strv.c b/src/test/test-strv.c index d5ea2b3fab..6e3c81395c 100644 --- a/src/test/test-strv.c +++ b/src/test/test-strv.c @@ -307,7 +307,7 @@ static void test_strv_sort(void) { } static void test_strv_extend_strv_concat(void) { - _cleanup_strv_free_ char **a = NULL, **b = NULL; + _cleanup_strv_free_ char **a = NULL, **b = NULL; a = strv_new("without", "suffix", NULL); b = strv_new("with", "suffix", NULL); @@ -323,7 +323,7 @@ static void test_strv_extend_strv_concat(void) { } static void test_strv_extend_strv(void) { - _cleanup_strv_free_ char **a = NULL, **b = NULL; + _cleanup_strv_free_ char **a = NULL, **b = NULL; a = strv_new("abc", "def", "ghi", NULL); b = strv_new("jkl", "mno", "pqr", NULL); |