From 070d95d161c2491c8042a21683e048b1e7941c89 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Wed, 25 Nov 2015 09:11:03 -0600 Subject: [PATCH] Trivial change --- fs/hostfs/hostfs.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fs/hostfs/hostfs.h b/fs/hostfs/hostfs.h index 3982e09184..17227611a1 100644 --- a/fs/hostfs/hostfs.h +++ b/fs/hostfs/hostfs.h @@ -54,14 +54,14 @@ /* Quasi-standard definitions */ #ifndef MIN -# define MIN(a,b) (a < b ? a : b) +# define MIN(a,b) (a < b ? a : b) #endif #ifndef MAX -# define MAX(a,b) (a > b ? a : b) +# define MAX(a,b) (a > b ? a : b) #endif -#define HOSTFS_MAX_PATH 256 +#define HOSTFS_MAX_PATH 256 /**************************************************************************** * Public Types @@ -96,7 +96,7 @@ struct hostfs_mountpt_s ****************************************************************************/ /**************************************************************************** - * Public Function Prototypes + * Internal function prototypes ****************************************************************************/ /* Semaphore access for internal use */