
On 25.06.2015 11:46, Maxim Nestratov wrote:
25.06.2015 12:19, Maxim Nestratov пишет:
25.06.2015 11:18, Michal Privoznik пишет:
There shouldn't be any functional change. Only some formatting nits fixed.
Michal Privoznik (5): vz_driver: Reformat vz_network: Reformat vz_sdk: Reformat vz_storage: Reformat vz_utils: Reformat
src/vz/vz_driver.c | 86 ++++++++++----------- src/vz/vz_network.c | 26 +++---- src/vz/vz_sdk.c | 209 ++++++++++++++++++++++++++-------------------------- src/vz/vz_storage.c | 58 +++++++-------- src/vz/vz_utils.h | 20 ++--- 5 files changed, 199 insertions(+), 200 deletions(-)
ACK. Michal, thank you for this work.
Maxim Nestratov
-- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list
By the way, Michal, how did you spot all these nits? Is there any tool to do it automatically? make syntax-check doesn't seem to be able to catch all this stuff.
I've just noticed that there are some irregularities in the code. So I've opened in in vim and run reformat over the whole files. (gg shift+V shift+g =) Then I've fixed some small nits that vim formatted badly. Michal