summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorXavier Roche <xroche@users.noreply.github.com>2014-05-04 11:02:43 +0000
committerXavier Roche <xroche@users.noreply.github.com>2014-05-04 11:02:43 +0000
commit3b1bf0b8afd5d5b5b7686bd0c6f7f3697f4e5dc2 (patch)
tree57f9c761deaa338ca65e56890efd8a7acdeb77d3 /src
parent6aef8ee8201f0d6167438a64d13efa3790069175 (diff)
Comment.
Diffstat (limited to 'src')
-rw-r--r--src/htssafe.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/htssafe.h b/src/htssafe.h
index dc3382e..6f21e6d 100644
--- a/src/htssafe.h
+++ b/src/htssafe.h
@@ -86,6 +86,7 @@ static void abortf_(const char *exp, const char *file, int line) {
/* Note: char[] and const char[] are compatible */
#define HTS_IS_CHAR_BUFFER(VAR) ( __builtin_types_compatible_p ( typeof (VAR), char[] ) )
#else
+/* Note: a bit lame as char[8] won't be seen. */
#define HTS_IS_CHAR_BUFFER(VAR) ( sizeof(VAR) != sizeof(char*) )
#endif
#define HTS_IS_NOT_CHAR_BUFFER(VAR) ( ! HTS_IS_CHAR_BUFFER(VAR) )