summaryrefslogtreecommitdiff
path: root/test/format/config.c
diff options
context:
space:
mode:
authorMichael Cahill <michael.cahill@mongodb.com>2016-09-16 16:16:17 +1000
committerAlex Gorrod <alexander.gorrod@mongodb.com>2016-09-16 16:16:17 +1000
commit03bbd9d3c9330a5b6e3cbd7d2db1ac7fea5e96bf (patch)
treef0d12b535fee95b721d8d046c3e4dfbfec0a91e2 /test/format/config.c
parentd318b8a5370f7182beeab4124cee04fdce271608 (diff)
downloadmongo-03bbd9d3c9330a5b6e3cbd7d2db1ac7fea5e96bf.tar.gz
WT-2916 Fix and simplify s_whitespace. (#3047)
Diffstat (limited to 'test/format/config.c')
-rw-r--r--test/format/config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/format/config.c b/test/format/config.c
index 1b09916bd88..542adf33da2 100644
--- a/test/format/config.c
+++ b/test/format/config.c
@@ -796,7 +796,7 @@ config_find(const char *s, size_t len)
{
CONFIG *cp;
- for (cp = c; cp->name != NULL; ++cp)
+ for (cp = c; cp->name != NULL; ++cp)
if (strncmp(s, cp->name, len) == 0 && cp->name[len] == '\0')
return (cp);