diff options
-rw-r--r-- | miscutils/i2c_tools.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/i2c_tools.c b/miscutils/i2c_tools.c index 57bb72ae7..7731466f7 100644 --- a/miscutils/i2c_tools.c +++ b/miscutils/i2c_tools.c | |||
@@ -908,7 +908,7 @@ int i2cdump_main(int argc UNUSED_PARAM, char **argv) | |||
908 | 908 | ||
909 | int bus_num, bus_addr, mode = I2C_SMBUS_BYTE_DATA, even = 0, pec = 0; | 909 | int bus_num, bus_addr, mode = I2C_SMBUS_BYTE_DATA, even = 0, pec = 0; |
910 | unsigned first = 0x00, last = 0xff, opts; | 910 | unsigned first = 0x00, last = 0xff, opts; |
911 | int *block = (int *)bb_common_bufsiz1; | 911 | int block[I2CDUMP_NUM_REGS]; |
912 | char *opt_r_str, *dash; | 912 | char *opt_r_str, *dash; |
913 | int fd, res; | 913 | int fd, res; |
914 | 914 | ||