From: Mark Fasheh Date: Tue, 28 Nov 2006 23:13:18 +0000 (-0800) Subject: ocfs2: fix format warnings in dlm_alloc_pagevec() X-Git-Tag: v2.6.20-rc1~34^2~40^2~4^2~29 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f5a923d1ba648bfb3cc922c66981fc8e3280f57f;p=linux-2.6 ocfs2: fix format warnings in dlm_alloc_pagevec() Signed-off-by: Mark Fasheh --- diff --git a/fs/ocfs2/dlm/dlmdomain.c b/fs/ocfs2/dlm/dlmdomain.c index 8d1065f8b3..f6cdab3a2c 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);