mirror of
https://github.com/lbonn/rofi
synced 2024-11-22 20:03:03 +00:00
Small indent
This commit is contained in:
parent
2d35397195
commit
058aac887f
1 changed files with 4 additions and 6 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue