diff options
author | Leon Romanovsky <leon@leon.nu> | 2012-12-27 19:55:46 +0200 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk.kim@samsung.com> | 2012-12-28 11:27:53 +0900 |
commit | 9836b8b9499cb25ea32cad9fff640eef874c5431 (patch) | |
tree | b7d05ce46e6b1f86aea3794ba7b0eddf9db8c9bd /fs/f2fs/f2fs.h | |
parent | 2b50638decdb9a8585654a5acf1c8ce5962f1951 (diff) | |
download | op-kernel-dev-9836b8b9499cb25ea32cad9fff640eef874c5431.zip op-kernel-dev-9836b8b9499cb25ea32cad9fff640eef874c5431.tar.gz |
f2fs: unify string length declarations and usage
This patch is intended to unify string length declarations and usage.
There are number of calls to strlen which return size_t object.
The size of this object depends on compiler if it will be bigger,
equal or even smaller than an unsigned int
Signed-off-by: Leon Romanovsky <leon@leon.nu>
Signed-off-by: Jaegeuk Kim <jaegeuk.kim@samsung.com>
Diffstat (limited to 'fs/f2fs/f2fs.h')
-rw-r--r-- | fs/f2fs/f2fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/f2fs.h b/fs/f2fs/f2fs.h index a18d63d..13c6dfb 100644 --- a/fs/f2fs/f2fs.h +++ b/fs/f2fs/f2fs.h @@ -881,7 +881,7 @@ int f2fs_sync_fs(struct super_block *, int); /* * hash.c */ -f2fs_hash_t f2fs_dentry_hash(const char *, int); +f2fs_hash_t f2fs_dentry_hash(const char *, size_t); /* * node.c |