diff options
| author | 2022-03-27 15:33:31 +0100 | |
|---|---|---|
| committer | 2022-03-27 15:41:28 +0100 | |
| commit | ed6e19bbd06cdec2a9d75e4c2c338d47d759eecf (patch) | |
| tree | 29d90503a51c54eafd0ba87bd34b961908d45b48 /src/coremods | |
| parent | Merge branch 'insp3' into master. (diff) | |
Fix unsigned/const keyword ordering, remove unnecessary consts.
Diffstat (limited to 'src/coremods')
| -rw-r--r-- | src/coremods/core_dns.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coremods/core_dns.cpp b/src/coremods/core_dns.cpp index d8538c698..752766a76 100644 --- a/src/coremods/core_dns.cpp +++ b/src/coremods/core_dns.cpp @@ -272,7 +272,7 @@ public: { } - void Fill(const unsigned char* input, const unsigned short len) + void Fill(const unsigned char* input, unsigned short len) { if (len < HEADER_LENGTH) throw Exception(creator, "Unable to fill packet"); |
