Fix warning in tests: Variable might get clobbered by 'longjmp' or 'vfork'

This commit is contained in:
Philippe Teuwen 2013-02-22 22:27:16 +01:00
parent 7e3549819e
commit a0ebd8ba15

View file

@ -30,7 +30,7 @@ test_access_storm(void)
size_t device_count = nfc_list_devices(context, connstrings, MAX_DEVICE_COUNT);
cut_assert_equal_int(ref_device_count, device_count, cut_message("device count"));
for (size_t i = 0; i < device_count; i++) {
for (volatile size_t i = 0; i < device_count; i++) {
nfc_device *device;
nfc_target ant[MAX_TARGET_COUNT];