From 592ad09684a6cb9588d4ee4c1dc6f629a8d21ac8 Mon Sep 17 00:00:00 2001 From: Matt Johnston Date: Wed, 30 Mar 2022 14:28:59 +0800 Subject: 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; } -- cgit v1.2.1