Browse Source

ocfs2: fix format warnings in dlm_alloc_pagevec()

Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
Mark Fasheh 18 years ago
parent
commit
f5a923d1ba
1 changed files with 2 additions and 1 deletions
  1. 2 1
      fs/ocfs2/dlm/dlmdomain.c

+ 2 - 1
fs/ocfs2/dlm/dlmdomain.c

@@ -68,7 +68,8 @@ static void **dlm_alloc_pagevec(int pages)
 			goto out_free;
 			goto out_free;
 
 
 	mlog(0, "Allocated DLM hash pagevec; %d pages (%lu expected), %lu buckets per page\n",
 	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;
 	return vec;
 out_free:
 out_free:
 	dlm_free_pagevec(vec, i);
 	dlm_free_pagevec(vec, i);