diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-09-24 20:37:08 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-09-24 20:37:08 -0400 |
| commit | b3ad05094b4e778d92a351a743cdf15e7bd990b2 (patch) | |
| tree | f3b45d636746929e89777c53de51c950c2c1c6b4 /types.h | |
| parent | 559a1b012a45fd37faad444050e1de733bbf109f (diff) | |
Autoformatting with clang-format
Diffstat (limited to 'types.h')
| -rw-r--r-- | types.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -9,14 +9,14 @@ #define FILE_TYPES__H #include <limits.h> -#include <sys/types.h> #include <sys/stat.h> +#include <sys/types.h> #include <unistd.h> #include "terminal.h" #define MAX_COLS 12 -#define MAX_SORT (2*MAX_COLS) +#define MAX_SORT (2 * MAX_COLS) #define HASH_SIZE 1024 #define HASH_MASK (HASH_SIZE - 1) @@ -70,8 +70,8 @@ typedef struct bb_s { int scroll, cursor; char *globpats; - char sort[MAX_SORT+1]; - char columns[MAX_COLS+1]; + char sort[MAX_SORT + 1]; + char columns[MAX_COLS + 1]; unsigned int interleave_dirs : 1; unsigned int should_quit : 1; unsigned int dirty : 1; |
