From c139478f60703b07cfee300085f04610a227d77a Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Mon, 27 Aug 2018 05:50:52 -0600 Subject: [PATCH] nclude/nuttx/fs/binfs.h: Fix warning: Type defaults to 'int' in declaration of 'mountpt_operations' --- include/nuttx/fs/binfs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/nuttx/fs/binfs.h b/include/nuttx/fs/binfs.h index d425ca9584..2a708e6fb4 100644 --- a/include/nuttx/fs/binfs.h +++ b/include/nuttx/fs/binfs.h @@ -68,7 +68,7 @@ extern "C" * It is typically mounted under /bin. */ -EXTERN mountpt_operations; +struct mountpt_operations; EXTERN const struct mountpt_operations binfs_operations; /****************************************************************************