Fix white spaces inconsistencies.

This commit is contained in:
Romain Tartière 2015-05-12 13:19:00 +02:00
parent 48e4f979a9
commit faac4ae5d8
15 changed files with 26 additions and 26 deletions

View file

@ -32,7 +32,7 @@ cut_setup (void)
int res;
nfc_connstring devices[8];
size_t device_count;
nfc_init (&context);
cut_assert_not_null (context, cut_message ("Unable to init libnfc (malloc)"));
@ -43,7 +43,7 @@ cut_setup (void)
for (size_t i = 0; i < device_count; i++) {
device = nfc_open (context, devices[i]);
if (!device)
if (!device)
cut_omit ("nfc_open() failed.");
tags = freefare_get_tags (device);
@ -91,9 +91,9 @@ cut_teardown (void)
tags = NULL;
}
if (device)
if (device)
nfc_close (device);
nfc_exit (context);
}