Small indent

This commit is contained in:
Qball Cow 2024-02-25 22:24:58 +01:00
parent 2d35397195
commit 058aac887f

View file

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