]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
indexer: Remove stray whitespaces
authorMarco Bettini <marco.bettini@open-xchange.com>
Wed, 8 Jun 2022 10:17:25 +0000 (10:17 +0000)
committermarco.bettini <marco.bettini@open-xchange.com>
Wed, 8 Jun 2022 15:15:03 +0000 (15:15 +0000)
src/indexer/indexer-queue.c
src/indexer/indexer-queue.h

index 90241917d6d90c950b260df9206426e7f9cdd5b3..c64910fcbfe86ccc84230d2c84f99e8211b1ee03 100644 (file)
@@ -42,7 +42,7 @@ struct indexer_queue *
 indexer_queue_init(indexer_queue_callback_t *callback)
 {
        struct indexer_queue *queue;
-       
+
        queue = i_new(struct indexer_queue, 1);
        queue->callback = callback;
        hash_table_create(&queue->requests, default_pool, 0,
index 34cdcb2c972935406d344f55048e501a48825a73..066173bbd7451afb9fb6835774f18a2fa007453c 100644 (file)
@@ -46,7 +46,7 @@ void indexer_queue_deinit(struct indexer_queue **queue);
 /* The callback is called whenever a new request is added to the queue. */
 void indexer_queue_set_listen_callback(struct indexer_queue *queue,
                                       void (*callback)(struct indexer_queue *));
-       
+
 void indexer_queue_append(struct indexer_queue *queue, bool append,
                          const char *username, const char *mailbox,
                          const char *session_id, unsigned int max_recent_msgs,