From 940b7f8a3ea4b29616b9d18a8e9b4a62a8ac4e7f Mon Sep 17 00:00:00 2001 From: Boris Astardzhiev Date: Mon, 14 May 2018 07:24:46 -0600 Subject: [PATCH] apps/nshlib/nsh.h: Fix typo.. #undef not #undefine. --- nshlib/nsh.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nshlib/nsh.h b/nshlib/nsh.h index bf0b61f9d..0a7bdd0e4 100644 --- a/nshlib/nsh.h +++ b/nshlib/nsh.h @@ -651,10 +651,10 @@ # define HAVE_DF_HUMANREADBLE 1 # define HAVE_DF_BLOCKOUTPUT 1 # if defined(CONFIG_FS_PROCFS_EXCLUDE_USAGE) -# undefine HAVE_DF_HUMANREADBLE +# undef HAVE_DF_HUMANREADBLE # endif # if defined(CONFIG_FS_PROCFS_EXCLUDE_BLOCKS) -# undefine HAVE_DF_BLOCKOUTPUT +# undef HAVE_DF_BLOCKOUTPUT # endif #endif