Fix indentation.

This commit is contained in:
Jason Evans
2017-01-13 10:34:50 -08:00
parent 77cccac8cd
commit 87e81e609b
2 changed files with 4 additions and 4 deletions

View File

@@ -547,10 +547,10 @@ bool
ckh_string_keycomp(const void *k1, const void *k2)
{
assert(k1 != NULL);
assert(k2 != NULL);
assert(k1 != NULL);
assert(k2 != NULL);
return (strcmp((char *)k1, (char *)k2) ? false : true);
return (strcmp((char *)k1, (char *)k2) ? false : true);
}
void