diff options
author | Mark Fasheh <mark.fasheh@oracle.com> | 2006-11-28 15:13:18 -0800 |
---|---|---|
committer | Mark Fasheh <mark.fasheh@oracle.com> | 2006-12-01 18:26:56 -0800 |
commit | f5a923d1ba648bfb3cc922c66981fc8e3280f57f (patch) | |
tree | ffde9aad7a93dcafa1e52902e8675ce1c2e4fdb3 /fs/ocfs2 | |
parent | da66116eef7da8557762c9b5efdc435bc0afecfa (diff) | |
download | op-kernel-dev-f5a923d1ba648bfb3cc922c66981fc8e3280f57f.zip op-kernel-dev-f5a923d1ba648bfb3cc922c66981fc8e3280f57f.tar.gz |
ocfs2: fix format warnings in dlm_alloc_pagevec()
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Diffstat (limited to 'fs/ocfs2')
-rw-r--r-- | fs/ocfs2/dlm/dlmdomain.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/ocfs2/dlm/dlmdomain.c b/fs/ocfs2/dlm/dlmdomain.c index 8d1065f..f6cdab3 100644 --- a/fs/ocfs2/dlm/dlmdomain.c +++ b/fs/ocfs2/dlm/dlmdomain.c @@ -68,7 +68,8 @@ static void **dlm_alloc_pagevec(int pages) goto out_free; mlog(0, "Allocated DLM hash pagevec; %d pages (%lu expected), %lu buckets per page\n", - pages, DLM_HASH_PAGES, (unsigned long)DLM_BUCKETS_PER_PAGE); + pages, (unsigned long)DLM_HASH_PAGES, + (unsigned long)DLM_BUCKETS_PER_PAGE); return vec; out_free: dlm_free_pagevec(vec, i); |