summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorColin Ian King2019-03-18 00:09:09 +0100
committerRichard Weinberger2019-05-07 23:18:28 +0200
commit91e1e547abcd88f1e23204e62e377aaa7c93a786 (patch)
tree7a9d5e3edd80f49edc842e6bf27f2c397a83e6e1
parentarch: um: drivers: Kconfig: pedantic formatting (diff)
downloadkernel-qcow2-linux-91e1e547abcd88f1e23204e62e377aaa7c93a786.tar.gz
kernel-qcow2-linux-91e1e547abcd88f1e23204e62e377aaa7c93a786.tar.xz
kernel-qcow2-linux-91e1e547abcd88f1e23204e62e377aaa7c93a786.zip
hostfs: fix mismatch between link_file definition and declaration
The function link_file declaration in the header file has the order of the two arguments (from, to) swapped when compared to the definition arguments of (to, from). Fix this by swapping them around to match the definition. This error predates the git history, so no idea when this error was introduced. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Richard Weinberger <richard@nod.at>
-rw-r--r--fs/hostfs/hostfs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/hostfs/hostfs.h b/fs/hostfs/hostfs.h
index 33b8423ef0c9..f4295aa19350 100644
--- a/fs/hostfs/hostfs.h
+++ b/fs/hostfs/hostfs.h
@@ -87,7 +87,7 @@ extern int do_mkdir(const char *file, int mode);
extern int hostfs_do_rmdir(const char *file);
extern int do_mknod(const char *file, int mode, unsigned int major,
unsigned int minor);
-extern int link_file(const char *from, const char *to);
+extern int link_file(const char *to, const char *from);
extern int hostfs_do_readlink(char *file, char *buf, int size);
extern int rename_file(char *from, char *to);
extern int rename2_file(char *from, char *to, unsigned int flags);