diff options
author | Oskar <[email protected]> | 2024-03-29 19:43:01 +0100 |
---|---|---|
committer | Oskar <[email protected]> | 2024-03-29 19:43:01 +0100 |
commit | 40dc624e6c30af5e8b0ced7b615a7503eb502c17 (patch) | |
tree | c1dfaf9147d6843fdd5004c805f377962fee3a39 /input.c | |
parent | 47b6da53aa76a7be011703158e71ac5d3c642878 (diff) |
Renamed validate_L to validate_LN. The name may change. I should also
find a better way to implement vlaidate_check_p_m but for now all that
matters is that its working correctly... Which i think it does...
Diffstat (limited to 'input.c')
-rw-r--r-- | input.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -34,7 +34,7 @@ int smode_input(char *single, char **multiple, uint64_t focus) { // This functio case 'l': case 'L': { - int chk = validate_L(smode_buf, MODE_L); + int chk = validate_LN(smode_buf, MODE_L); if (chk == _INVALID) { return _FAIL; } @@ -46,7 +46,7 @@ int smode_input(char *single, char **multiple, uint64_t focus) { // This functio case 'n': case 'N': { - int chk = validate_L(smode_buf, MODE_N); + int chk = validate_LN(smode_buf, MODE_N); if (chk == _INVALID) { return _FAIL; } |