diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-10-29 15:52:50 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-10-29 15:52:50 -0400 |
commit | 5b095d98928fdb9e3b75be20a54b7a6cbf6ca9ad (patch) | |
tree | b6caa0cdbaac016447a790881ad4a6c5dfce6900 /drivers/firmware | |
parent | 4b7a4274ca63dadd9c4f17fc953f3a5d19855c4c (diff) |
net: replace %p6 with %pI6
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/firmware')
-rw-r--r-- | drivers/firmware/iscsi_ibft.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firmware/iscsi_ibft.c b/drivers/firmware/iscsi_ibft.c index 0a6472097a81..acb82aff8808 100644 --- a/drivers/firmware/iscsi_ibft.c +++ b/drivers/firmware/iscsi_ibft.c | |||
@@ -290,7 +290,7 @@ static ssize_t sprintf_ipaddr(char *buf, u8 *ip) | |||
290 | /* | 290 | /* |
291 | * IPv6 | 291 | * IPv6 |
292 | */ | 292 | */ |
293 | str += sprintf(str, "%p6", ip); | 293 | str += sprintf(str, "%pI6", ip); |
294 | } | 294 | } |
295 | str += sprintf(str, "\n"); | 295 | str += sprintf(str, "\n"); |
296 | return str - buf; | 296 | return str - buf; |