saleae-logic16: Minor whitespace fixes, cosmetics.

This commit is contained in:
Uwe Hermann 2014-05-03 21:22:38 +02:00
parent 1b822521f7
commit b9a53103cf
2 changed files with 6 additions and 4 deletions

View File

@ -627,6 +627,9 @@ static int configure_channels(const struct sr_dev_inst *sdi)
struct sr_channel *ch;
GSList *l;
uint16_t channel_bit;
#ifdef WORDS_BIGENDIAN
int i;
#endif
devc = sdi->priv;
@ -657,7 +660,6 @@ static int configure_channels(const struct sr_dev_inst *sdi)
devc->unitsize = 2;
} else {
#ifdef WORDS_BIGENDIAN
int i;
for (i = 0; i < devc->num_channels; i++)
devc->channel_masks[i] >>= 8;
#endif

View File

@ -790,7 +790,7 @@ SR_PRIV void logic16_receive_transfer(struct libusb_transfer *transfer)
transfer->actual_length, devc->unitsize);
if (converted_length > 0) {
/* Cap sample count if needed */
/* Cap sample count if needed. */
if (devc->limit_samples &&
(uint64_t)devc->num_samples + converted_length
> devc->limit_samples) {