Skip to content

Commit 7bf87a6

Browse files
committed
db: Fix tab/space issue with previous commit
Replace spaces with tabs in previous commit. There are no functional changes in this commit. Fixes: 1a8730c ("db: propagate notify_used when merging filter collections") Signed-off-by: Tom Hromatka <tom.hromatka@oracle.com> (cherry picked from commit 4b0bf50)
1 parent 2d0ed0c commit 7bf87a6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/db.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1259,9 +1259,9 @@ int db_col_merge(struct db_filter_col *col_dst, struct db_filter_col *col_src)
12591259
/* reset the precompute */
12601260
db_col_precompute_reset(col_dst);
12611261

1262-
/* propagate NOTIFY usage so NEW_LISTENER is requested on load */
1263-
if (col_src->notify_used)
1264-
col_dst->notify_used = true;
1262+
/* propagate NOTIFY usage so NEW_LISTENER is requested on load */
1263+
if (col_src->notify_used)
1264+
col_dst->notify_used = true;
12651265

12661266
/* free the source */
12671267
col_src->filter_cnt = 0;

0 commit comments

Comments
 (0)