From 88e5472450d3160e63019553f58a8b4842462602 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Sun, 5 Jul 2009 10:52:38 +0000 Subject: [PATCH] Small coding style fix. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31410 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/tools/fs_shell/fuse.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/tools/fs_shell/fuse.cpp b/src/tools/fs_shell/fuse.cpp index b31365dbe1..0d04096192 100644 --- a/src/tools/fs_shell/fuse.cpp +++ b/src/tools/fs_shell/fuse.cpp @@ -106,7 +106,9 @@ init_kernel() return FSSH_B_OK; } -static void fromFsshStatToStat (struct fssh_stat *f_stbuf, struct stat *stbuf) + +static void +fromFsshStatToStat(struct fssh_stat* f_stbuf, struct stat* stbuf) { stbuf->st_dev = f_stbuf->fssh_st_dev; stbuf->st_ino = f_stbuf->fssh_st_ino;