From e2793c5db436382089b397cdbf1c73f2e1c26a96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Fri, 19 May 2006 13:05:56 +0000 Subject: [PATCH] Fixed warning. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17512 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/libroot/os/fs_volume.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/system/libroot/os/fs_volume.c b/src/system/libroot/os/fs_volume.c index 265335c67a..175c5e1a79 100644 --- a/src/system/libroot/os/fs_volume.c +++ b/src/system/libroot/os/fs_volume.c @@ -1,5 +1,5 @@ /* - * Copyright 2004-2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved. + * Copyright 2004-2006, Axel Dörfler, axeld@pinc-software.de. All rights reserved. * Distributed under the terms of the MIT License. */ @@ -7,12 +7,15 @@ #include #include +#include + dev_t fs_mount_volume(const char *where, const char *device, const char *fileSystem, uint32 flags, const char *parameters) { - return _kern_mount(where, device, fileSystem, flags, (void *)parameters, parameters ? strlen(parameters) : 0); + return _kern_mount(where, device, fileSystem, flags, (void *)parameters, + parameters ? strlen(parameters) : 0); }