Skip to content

Commit 3b42ddb

Browse files
Update cstring.c
1 parent 1a4ae51 commit 3b42ddb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

code/logic/cstring.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ cstring fossil_io_cstring_pad_right(ccstring str, size_t total_length, char pad_
334334
return result;
335335
}
336336

337-
int fossil_io_cstring_icmp(const char *str1, const char *str2) {
337+
int fossil_io_cstring_icmp(ccstring str1, ccstring str2) {
338338
while (*str1 && *str2) {
339339
if (tolower((unsigned char)*str1) != tolower((unsigned char)*str2)) {
340340
return 0; // Not equal

0 commit comments

Comments
 (0)