Fixed a warning with debug turned on.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7244 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-04-19 21:58:43 +00:00
parent acfef65c84
commit c2cb9079b5
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
/*
** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Copyright 2003-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
*/
@ -262,7 +262,7 @@ Partition::Scan(bool mountFileSystems)
status_t
add_partitions_for(int fd, bool mountFileSystems)
{
TRACE(("add_partitions_for(fd = %ld, mountFS = %s)\n", fd, mountFileSystems ? "yes" : "no"));
TRACE(("add_partitions_for(fd = %d, mountFS = %s)\n", fd, mountFileSystems ? "yes" : "no"));
Partition *partition = new Partition(fd);