Fix indentation for readability

This commit is contained in:
Doug Engert 2015-09-17 19:03:44 -05:00
parent 547494f012
commit 24a3999386
1 changed files with 7 additions and 7 deletions

View File

@ -1172,13 +1172,13 @@ static int piv_read_binary(sc_card_t *card, unsigned int idx,
if ( rbuflen < idx + count)
count = rbuflen - idx;
if (count <= 0) {
r = 0;
priv->rwb_state = 1;
} else {
memcpy(buf, rbuf + idx, count);
r = count;
}
if (count <= 0) {
r = 0;
priv->rwb_state = 1;
} else {
memcpy(buf, rbuf + idx, count);
r = count;
}
err:
SC_FUNC_RETURN(card->ctx, SC_LOG_DEBUG_NORMAL, r);
}