Skip to content

Commit d10b2da

Browse files
committed
Format
Signed-off-by: Viktor Söderqvist <[email protected]>
1 parent 9c0905b commit d10b2da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/memory_prefetch.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ void prefetchKeys(client *c, int first, int step, int count) {
288288

289289
int n = (c->argc - first) / step;
290290
if (count < n) n = count;
291-
if (n < 2) return; /* There's no benefit in prefetcing only one key. */
291+
if (n < 2) return; /* There's no benefit in prefetcing only one key. */
292292
hashtableIncrementalFindState states[n];
293293
int i, arg;
294294
for (i = 0, arg = first; i < n && arg < c->argc; i++, arg += step) {

0 commit comments

Comments
 (0)