diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2023-09-05 22:38:17 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2023-09-05 22:38:17 -0700 |
commit | b75fd1eed010a73802b9a2a43579df24d5166c38 (patch) | |
tree | dd928d574066aed695b52e24003d307c5c72996c | |
parent | 2378632dbbb6ed1ba563429aaa2fce79ff8e9ff8 (diff) |
modules/flow: fix default count
57bae7 removed the default from the settings list when bumping the counts,
oops!
-rw-r--r-- | src/modules/flow/flow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/flow/flow.c b/src/modules/flow/flow.c index 321bf86..c26817a 100644 --- a/src/modules/flow/flow.c +++ b/src/modules/flow/flow.c @@ -22,7 +22,7 @@ */ #define FLOW_DEFAULT_SIZE "8" -#define FLOW_DEFAULT_COUNT "30000" +#define FLOW_DEFAULT_COUNT "40000" #define FLOW_DEFAULT_SPEED ".2" #define FLOW_MAX_SPEED 40 |