Skip to content

Commit

Permalink
ocfs2: fix format warnings in dlm_alloc_pagevec()
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
  • Loading branch information
Mark Fasheh committed Dec 2, 2006
1 parent da66116 commit f5a923d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fs/ocfs2/dlm/dlmdomain.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit f5a923d

Please sign in to comment.