Honor 'ISO C99 requires rest arguments to be used'.

This commit is contained in:
Romain Tartiere 2010-02-11 11:29:57 +00:00
parent 10b8b92eb9
commit 8903968ea3
5 changed files with 135 additions and 135 deletions

View file

@ -14,14 +14,14 @@ setup ()
cut_assert_not_null (device, cut_message ("No device found"));
tags = mifare_classic_get_tags (device);
cut_assert_not_null (tags, cut_message ("Error enumerating NFC tags"));
cut_assert_not_null (tags, cut_message ("mifare_classic_get_tags() failed"));
cut_assert_not_null (tags[0], cut_message ("No MIFARE CLassic tag on NFC device"));
cut_assert_not_null (tags[0], cut_message ("No MIFARE Classic tag on NFC device"));
tag = tags[0];
res = mifare_classic_connect (tag);
cut_assert_equal_int (0, res);
cut_assert_equal_int (0, res, cut_message ("mifare_classic_connect() failed"));
}
void