From a9190a57031f3c8ae975ea79291c50470f6f9802 Mon Sep 17 00:00:00 2001 From: Eric Jiang Date: Sun, 13 Feb 2011 20:39:00 -0500 Subject: [PATCH] Fixed array in scales.h --- scales.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scales.h b/scales.h index 86157c6..2a95ef3 100644 --- a/scales.h +++ b/scales.h @@ -4,10 +4,11 @@ * * For example, the USB product 1446:6173 becomes {0x1446, 0x6173} */ +#include // array length int scalesc = 1; -uint16_t scales[][] = { - {0x1446, 0x6173} // Stamps.com USB scale -} +uint16_t scales[1][2] = {\ + {0x1446, 0x6a73} // Stamps.com USB scale +};