diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-07-24 23:31:06 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2011-07-26 13:01:09 -0400 |
commit | ed476418394f12d47f27a75424c237a94d244f10 (patch) | |
tree | 7237c6c7677ff112afa986dcf4379409aa25efc2 /drivers/pci/pci-label.c | |
parent | 61effb519cbf0b2973c65070a890fabfcbf84756 (diff) | |
download | op-kernel-dev-ed476418394f12d47f27a75424c237a94d244f10.zip op-kernel-dev-ed476418394f12d47f27a75424c237a94d244f10.tar.gz |
pci-label.c: size_t misspelled as mode_t
no, really, strlen() and snprintf() do not return mode_t values...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'drivers/pci/pci-label.c')
-rw-r--r-- | drivers/pci/pci-label.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/pci-label.c b/drivers/pci/pci-label.c index 77cb2a1..81525ae 100644 --- a/drivers/pci/pci-label.c +++ b/drivers/pci/pci-label.c @@ -55,7 +55,7 @@ enum smbios_attr_enum { SMBIOS_ATTR_INSTANCE_SHOW, }; -static mode_t +static size_t find_smbios_instance_string(struct pci_dev *pdev, char *buf, enum smbios_attr_enum attribute) { |