Fixed a warning.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10449 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-12-14 11:56:29 +00:00
parent f19d9d3b36
commit dd2e2231b0
1 changed files with 1 additions and 1 deletions

View File

@ -462,7 +462,7 @@ static status_t mount_fat_disk(const char *path, nspace_id nsid,
if (free_count < vol->total_clusters) if (free_count < vol->total_clusters)
vol->free_clusters = free_count; vol->free_clusters = free_count;
else { else {
dprintf("free cluster count from fsinfo block invalid %x\n",free_count); dprintf("free cluster count from fsinfo block invalid %lx\n", free_count);
err = -1; err = -1;
} }
if (last_allocated < vol->total_clusters) if (last_allocated < vol->total_clusters)