diff options
| author | Abhinav Prasai <abhinav.prsai@gmail.com> | 2025-08-24 23:55:20 +0100 |
|---|---|---|
| committer | Abhinav Prasai <abhinav.prsai@gmail.com> | 2025-08-24 23:55:20 +0100 |
| commit | 517612fd2d9961b42152430575b4d608048e906b (patch) | |
| tree | 2602b3cecb6f7359803569d3d00b8dc500920318 /src/defs.h | |
| parent | 10777ab35142e494884896c32cf5ed6389f9945f (diff) | |
git rescue commits
previously lost code changes from lost commit
Diffstat (limited to 'src/defs.h')
| -rw-r--r-- | src/defs.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -19,7 +19,7 @@ #define LENGTH(X) (sizeof X / sizeof X[0]) #define UDIST(a, b) abs((int)(a) - (int)(b)) #define CLAMP(x, lo, hi) (((x) < (lo)) ? (lo) : ((x) > (hi)) ? (hi) : (x)) -#define MAXCLIENTS 99 +#define MAX_CLIENTS 99 #define MAX_SCRATCHPADS 20 #define MIN_WINDOW_SIZE 20 #define MAX_ITEMS 256 @@ -110,7 +110,7 @@ typedef struct { char **can_be_swallowed[MAX_ITEMS]; char **scratchpads[32]; char **open_in_workspace[MAX_ITEMS]; - char *torun[MAX_ITEMS]; + char *to_run[MAX_ITEMS]; } Config; typedef struct { |
