diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2023-05-15 17:36:07 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2023-05-15 17:36:07 +0200 |
| commit | b653b47420ea75d36b92dbe353d1dbbe8e39b83c (patch) | |
| tree | 62789a79960b3b1ba67af5443f96e5db2ac23540 /sdep.c | |
| parent | cfb1bec532525848427f0130c8a6834e5053cbcb (diff) | |
| download | sdep-b653b47420ea75d36b92dbe353d1dbbe8e39b83c.tar.gz sdep-b653b47420ea75d36b92dbe353d1dbbe8e39b83c.zip | |
Changed const to #define
Diffstat (limited to 'sdep.c')
| -rw-r--r-- | sdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -10,7 +10,7 @@ | |||
| 10 | * Maximum number of characters in a line. The rest will be truncated. | 10 | * Maximum number of characters in a line. The rest will be truncated. |
| 11 | * Change this if you need very long lines. | 11 | * Change this if you need very long lines. |
| 12 | */ | 12 | */ |
| 13 | static const int MAXLEN = 10000; | 13 | #define MAXLEN 10000 |
| 14 | 14 | ||
| 15 | /* | 15 | /* |
| 16 | * Default date format. Anything that strftime(3) understands works, but | 16 | * Default date format. Anything that strftime(3) understands works, but |
