From 02a8c6cadd6b3969ed118821b5814c98161b08d3 Mon Sep 17 00:00:00 2001 From: Matt Johnston Date: Wed, 30 Mar 2022 14:28:59 +0800 Subject: [PATCH] Fix C99 comment --- dbutil.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }