Small indent

This commit is contained in:
Qball Cow 2024-02-25 22:24:58 +01:00
parent 2d35397195
commit 058aac887f
1 changed files with 4 additions and 6 deletions

View File

@ -29,7 +29,6 @@
#define G_LOG_DOMAIN "View"
#include "config.h"
#include <errno.h>
#include <locale.h>
#include <signal.h>
#include <stdint.h>
@ -64,7 +63,6 @@
#include "mode.h"
#include "modes/modes.h"
#include "xcb-internal.h"
#include "xrmoptions.h"
#include "view-internal.h"
#include "view.h"
@ -2644,12 +2642,12 @@ void rofi_view_cleanup() {
input_history_save();
}
static int rofi_thread_workers_sort(gconstpointer a,gconstpointer b, gpointer data G_GNUC_UNUSED)
{
static int rofi_thread_workers_sort(gconstpointer a, gconstpointer b,
gpointer data G_GNUC_UNUSED) {
thread_state *tsa = (thread_state *)a;
thread_state *tsb = (thread_state *)b;
// lower number is lower priority.. a is sorted above is a > b.
return tsa->priority-tsb->priority;
// lower number is lower priority.. a is sorted above is a > b.
return tsa->priority - tsb->priority;
}
void rofi_view_workers_initialize(void) {