Browse Source

get rid of extraneous breaks

git-svn-id: https://bucket.mit.edu/svn/nilm/acquisition/ethstream@8328 ddd99763-3ecb-0310-9145-efcb8ce7c51f
tags/ethstream-1.3
jim 13 years ago
parent
commit
ced565f372
1 changed files with 0 additions and 3 deletions
  1. +0
    -3
      ethstream.c

+ 0
- 3
ethstream.c View File

@@ -696,17 +696,14 @@ int data_callback(int channels, uint16_t * data, void *context)
&ci->calib, UE9_BIPOLAR_GAIN1,
12, data[i])) < 0)
goto bad;
break;
} else if (ci->convert == CONVERT_HEX) {
/* CONVERT_HEX */
if (printf("%04X", data[i]) < 0)
goto bad;
break;
} else {
/* CONVERT_DEC */
if (printf("%d", data[i]) < 0)
goto bad;
break;
}
columns_left--;
if (i < (channels - 1)) {


Loading…
Cancel
Save