summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2022-03-30 14:28:59 +0800
committerMatt Johnston <matt@ucc.asn.au>2022-03-30 14:28:59 +0800
commit592ad09684a6cb9588d4ee4c1dc6f629a8d21ac8 (patch)
tree980271f952ac9b9f8f306267b0dfd1b7880f41e2
parent040b19b2cb059e18b1541d9deb39fe945f67c44b (diff)
downloaddropbear-592ad09684a6cb9588d4ee4c1dc6f629a8d21ac8.tar.gz
Fix C99 comment
-rw-r--r--dbutil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbutil.c b/dbutil.c
index 2bb1d1a..588c8d0 100644
--- a/dbutil.c
+++ b/dbutil.c
@@ -617,7 +617,7 @@ int m_str_to_uint(const char* str, unsigned int *val) {
l = strtoul(str, &endp, 10);
if (endp == str || *endp != '\0') {
- // parse error
+ /* parse error */
return DROPBEAR_FAILURE;
}