Fixed array in scales.h

This commit is contained in:
Eric Jiang 2011-02-13 20:39:00 -05:00
parent d862cd1e94
commit a9190a5703

View File

@ -4,10 +4,11 @@
* *
* For example, the USB product 1446:6173 becomes {0x1446, 0x6173} * For example, the USB product 1446:6173 becomes {0x1446, 0x6173}
*/ */
#include <stdint.h>
// array length // array length
int scalesc = 1; int scalesc = 1;
uint16_t scales[][] = { uint16_t scales[1][2] = {\
{0x1446, 0x6173} // Stamps.com USB scale {0x1446, 0x6a73} // Stamps.com USB scale
} };