Skip to content

Commit

Permalink
Input: wdt87xx_i2c - fix format warning
Browse files Browse the repository at this point in the history
This fixes the following warning:

   drivers/input/touchscreen/wdt87xx_i2c.c: In function 'wdt87xx_validate_firmware':
>> drivers/input/touchscreen/wdt87xx_i2c.c:472:4: warning: format '%zd' expects argument of type 'signed size_t', but argument 4 has type 'size_t' [-Wformat=]
       size, fw->size);

Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
  • Loading branch information
Dmitry Torokhov committed Jun 29, 2015
1 parent 7c49437 commit 11ddba2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/input/touchscreen/wdt87xx_i2c.c
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ static int wdt87xx_validate_firmware(struct wdt87xx_data *wdt,
size = get_unaligned_le32(fw->data + FW_SIZE_OFFSET);
if (size != fw->size) {
dev_err(&wdt->client->dev,
"fw size mismatch: expected %d, actual %zd\n",
"fw size mismatch: expected %d, actual %zu\n",
size, fw->size);
return -EINVAL;
}
Expand Down

0 comments on commit 11ddba2

Please sign in to comment.