summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-06-26 16:40:38 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-06-26 16:40:38 -0600
commitd08bdf2af8bf711b192a5ebee57526af6c4baff4 (patch)
tree4aa96ef61b67cce296941329e60a34b5ec1d1a41 /apps
parentafb0defbd87207cc51c5553f35888e99d617beb6 (diff)
downloadnuttx-d08bdf2af8bf711b192a5ebee57526af6c4baff4.tar.gz
nuttx-d08bdf2af8bf711b192a5ebee57526af6c4baff4.tar.bz2
nuttx-d08bdf2af8bf711b192a5ebee57526af6c4baff4.zip
The hex2bin library did not build with debug off
Diffstat (limited to 'apps')
-rw-r--r--apps/include/hex2bin.h2
-rw-r--r--apps/system/hex2bin/Kconfig2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/include/hex2bin.h b/apps/include/hex2bin.h
index 366ee5479..af7bce697 100644
--- a/apps/include/hex2bin.h
+++ b/apps/include/hex2bin.h
@@ -97,7 +97,7 @@
# ifdef CONFIG_SYSTEM_HEX2BIN_DEBUG
# define hex2bin_debug(format, ...) fprintf(stderr, format, ##__VA_ARGS__)
# else
-# define lldbg(x...)
+# define hex2bin_debug(x...)
# endif
#else
# ifdef CONFIG_SYSTEM_HEX2BIN_DEBUG
diff --git a/apps/system/hex2bin/Kconfig b/apps/system/hex2bin/Kconfig
index fce69ff41..46c8cdf91 100644
--- a/apps/system/hex2bin/Kconfig
+++ b/apps/system/hex2bin/Kconfig
@@ -4,7 +4,7 @@
#
config SYSTEM_HEX2BIN
- bool "Intel HEX Convertion"
+ bool "Intel HEX Conversion"
default n
---help---
Enable support for a logic to convert Intel HEX format to binary.