diff options
| author | 2010-11-02 10:30:03 -0400 | |
|---|---|---|
| committer | 2010-11-02 10:30:03 -0400 | |
| commit | f0d9f7b3b8f36d688bda4cf2eee8ffdcacf98970 (patch) | |
| tree | af526830234b89fcf4f53ddd8ab92d2182f11198 /include | |
| parent | Improve display of information in /ACCTSHOW (diff) | |
Remove const from min_ and max_params
Diffstat (limited to 'include')
| -rw-r--r-- | include/ctables.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ctables.h b/include/ctables.h index 61d5af14c..cea127f17 100644 --- a/include/ctables.h +++ b/include/ctables.h @@ -98,13 +98,13 @@ class CoreExport Command : public ServiceProvider /** Minimum number of parameters command takes */ - const unsigned int min_params; + unsigned int min_params; /** Maximum number of parameters command takes. * This is used by the command parser to join extra parameters into one last param. * If not set, no munging is done to this command. */ - const unsigned int max_params; + unsigned int max_params; /** used by /stats m */ |
