From 9c20d5cb7d0f625124c4bb76e1e1ce654ab69d92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20D=C3=B6rfler?= Date: Tue, 27 May 2008 12:42:04 +0000 Subject: [PATCH] * Fixed the byte order definitions. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25671 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/fs_shell/fssh_api_wrapper.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/headers/private/fs_shell/fssh_api_wrapper.h b/headers/private/fs_shell/fssh_api_wrapper.h index 75faf208d8..8f4c2fe85c 100644 --- a/headers/private/fs_shell/fssh_api_wrapper.h +++ b/headers/private/fs_shell/fssh_api_wrapper.h @@ -110,16 +110,16 @@ #define B_BENDIAN_TO_HOST_INT32(arg) FSSH_B_BENDIAN_TO_HOST_INT32(arg) #define B_BENDIAN_TO_HOST_INT16(arg) FSSH_B_BENDIAN_TO_HOST_INT16(arg) -#define swap_data fssh_swap_data -#define is_type_swapped +#define swap_data fssh_swap_data +#define is_type_swapped fssh_is_type_swapped // Private implementations -#define __fssh_swap_double -#define __fssh_swap_float -#define __fssh_swap_int64 -#define __fssh_swap_int32 -#define __fssh_swap_int16 +#define __swap_double __fssh_swap_double +#define __swap_float __fssh_swap_float +#define __swap_int64 __fssh_swap_int64 +#define __swap_int32 __fssh_swap_int32 +#define __swap_int16 __fssh_swap_int16 ////////////////////////////////////////////////////////////////////////////////