From a55e32e52d19e9084e2b8b712935f99c16a45877 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Tue, 27 May 2008 13:28:58 +0000 Subject: [PATCH] * Moved fssh_lseek() out of the FSShell namespace. * Removed debug left-over. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25672 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/tools/fs_shell/partition_support.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/tools/fs_shell/partition_support.cpp b/src/tools/fs_shell/partition_support.cpp index 7b1823eb71..25d7ec57b1 100644 --- a/src/tools/fs_shell/partition_support.cpp +++ b/src/tools/fs_shell/partition_support.cpp @@ -18,6 +18,9 @@ #include "stat_priv.h" +using namespace FSShell; + + namespace FSShell { @@ -142,7 +145,6 @@ restricted_file_restrict_io(int fd, fssh_off_t& pos, fssh_off_t size) } -#include void restricted_file_restrict_stat(struct fssh_stat* st) { @@ -170,6 +172,9 @@ to_platform_seek_mode(int fsshWhence) } +} // namespace FSShell + + fssh_off_t fssh_lseek(int fd, fssh_off_t offset, int whence) { @@ -208,6 +213,3 @@ fssh_lseek(int fd, fssh_off_t offset, int whence) return pos; } - - -} // namespace FSShell