diff options
| author | Yeqi Fu <fufuyqqqqqq@gmail.com> | 2023-03-15 11:26:49 +0800 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2023-03-20 12:43:50 +0100 |
| commit | 48805df9c22a0700fba4b3b548fafaa21726ca68 (patch) | |
| tree | 651201596e3c686f2e64efd4f8feb5fd137c38ab /tests/unit/test-rcu-list.c | |
| parent | 5cb993ff131fca2abef3ce074a20258fd6fce557 (diff) | |
| download | focaccia-qemu-48805df9c22a0700fba4b3b548fafaa21726ca68.tar.gz focaccia-qemu-48805df9c22a0700fba4b3b548fafaa21726ca68.zip | |
replace TABs with spaces
Bring the files in line with the QEMU coding style, with spaces for indentation. Resolves: https://gitlab.com/qemu-project/qemu/-/issues/378 Signed-off-by: Yeqi Fu <fufuyqqqqqq@gmail.com> Message-Id: <20230315032649.57568-1-fufuyqqqqqq@gmail.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/unit/test-rcu-list.c')
| -rw-r--r-- | tests/unit/test-rcu-list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/test-rcu-list.c b/tests/unit/test-rcu-list.c index 9964171da4..8f0adb8b00 100644 --- a/tests/unit/test-rcu-list.c +++ b/tests/unit/test-rcu-list.c @@ -151,7 +151,7 @@ static QSLIST_HEAD(, list_element) Q_list_head; #define TEST_NAME "qslist" #define TEST_LIST_REMOVE_RCU(el, f) \ - QSLIST_REMOVE_RCU(&Q_list_head, el, list_element, f) + QSLIST_REMOVE_RCU(&Q_list_head, el, list_element, f) #define TEST_LIST_INSERT_AFTER_RCU(list_el, el, f) \ QSLIST_INSERT_AFTER_RCU(&Q_list_head, list_el, el, f) |