summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorBrad Fitzpatrick <brad@danga.com>2008-10-14 23:29:49 -0700
committerDustin Sallings <dustin@spy.net>2009-03-19 01:52:53 -0700
commit7b369ffb289ce1db2ee23a6b7acee1ecb910ecab (patch)
tree93f4da081f54c9716a5d580ff6de07e60407c6ee /util.c
parent22238587c6fbf8c896a567e424f2c2b0d4be6118 (diff)
downloadmemcached-7b369ffb289ce1db2ee23a6b7acee1ecb910ecab.tar.gz
C-style multiline comment
Diffstat (limited to 'util.c')
-rw-r--r--util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util.c b/util.c
index f580669..ed2ec51 100644
--- a/util.c
+++ b/util.c
@@ -17,8 +17,8 @@ bool safe_strtoull(const char *str, unsigned long long *out) {
return false;
if (isspace(*endptr) || (*endptr == '\0' && endptr != str)) {
if ((long long) ull < 0) {
- // only check for negative signs in the uncommon case when the unsigned
- // number is so big that it's negative as a signed number.
+ /* only check for negative signs in the uncommon case when the unsigned
+ * number is so big that it's negative as a signed number. */
if (strchr(str, '-') != NULL) {
return false;
}