diff options
| author | Tom Rini <[email protected]> | 2013-12-16 09:59:34 -0500 |
|---|---|---|
| committer | Scott Wood <[email protected]> | 2013-12-17 17:44:36 -0600 |
| commit | 3ef1eadb4466a68a32cb56e6be98a98061c07673 (patch) | |
| tree | 43c3c94fa27511f14f4176b675591f30dd9bf9cb /drivers | |
| parent | 2528460c38dfaffe7ae430244d1fa119087c1b01 (diff) | |
nand_util.c: Use '%zd' for length in nand_unlock debug print
length is size_t so needs to be '%zd' not '%d' to avoid warnings.
Cc: Scott Wood <[email protected]>
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/mtd/nand/nand_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/nand_util.c b/drivers/mtd/nand/nand_util.c index eeaa7e8a488..b292826034f 100644 --- a/drivers/mtd/nand/nand_util.c +++ b/drivers/mtd/nand/nand_util.c @@ -315,7 +315,7 @@ int nand_unlock(struct mtd_info *mtd, loff_t start, size_t length, int page; struct nand_chip *chip = mtd->priv; - debug("nand_unlock%s: start: %08llx, length: %d!\n", + debug("nand_unlock%s: start: %08llx, length: %zd!\n", allexcept ? " (allexcept)" : "", start, length); /* select the NAND device */ |
