Fix C99 comment

This commit is contained in:
Matt Johnston 2022-03-30 14:28:59 +08:00
parent 85f56f438a
commit 02a8c6cadd

View File

@ -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;
}