gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [libmicrohttpd] 05/05: mhd_str.c: muted compiler warning


From: gnunet
Subject: [GNUnet-SVN] [libmicrohttpd] 05/05: mhd_str.c: muted compiler warning
Date: Thu, 28 Sep 2017 20:00:20 +0200

This is an automated email from the git hooks/post-receive script.

karlson2k pushed a commit to branch master
in repository libmicrohttpd.

commit 27c939adae21c122325ccdf5c67761df791661e6
Author: Evgeny Grin (Karlson2k) <address@hidden>
AuthorDate: Thu Sep 28 20:59:49 2017 +0300

    mhd_str.c: muted compiler warning
---
 src/microhttpd/mhd_str.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/microhttpd/mhd_str.c b/src/microhttpd/mhd_str.c
index e965be63..0c62de52 100644
--- a/src/microhttpd/mhd_str.c
+++ b/src/microhttpd/mhd_str.c
@@ -101,7 +101,7 @@ isasciidigit (char c)
   return (c >= '0') && (c <= '9');
 }
 
-
+#if 0 /* Disable unused functions. */
 /**
  * Check whether character is hexadecimal digit in US-ASCII
  *
@@ -128,6 +128,7 @@ isasciialnum (char c)
 {
   return isasciialpha (c) || isasciidigit (c);
 }
+#endif /* Disable unused functions. */
 
 
 /**
@@ -146,6 +147,7 @@ toasciilower (char c)
 }
 
 
+#if 0 /* Disable unused functions. */
 /**
  * Convert US-ASCII character to upper case.
  * If character is lower case letter in US-ASCII than it's converted to upper
@@ -176,6 +178,7 @@ todigitvalue (char c)
 
   return -1;
 }
+#endif /* Disable unused functions. */
 
 
 /**

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]