Reindent after last commit.

This commit is contained in:
Romain Tartière 2014-04-06 14:13:28 +02:00
parent 3085408bf2
commit 510d8a4b85

View file

@ -190,8 +190,8 @@ freefare_get_tag_uid (MifareTag tag)
{
char *res;
if ((res = malloc (2 * tag->info.szUidLen + 1))) {
for (size_t i =0; i < tag->info.szUidLen; i++)
snprintf (res + 2*i, 3, "%02x", tag->info.abtUid[i]);
for (size_t i =0; i < tag->info.szUidLen; i++)
snprintf (res + 2*i, 3, "%02x", tag->info.abtUid[i]);
}
return res;
}