diff options
Diffstat (limited to 'src/plugins/chartable.cxx')
-rw-r--r-- | src/plugins/chartable.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/chartable.cxx b/src/plugins/chartable.cxx index 704f12ab7..172242ba3 100644 --- a/src/plugins/chartable.cxx +++ b/src/plugins/chartable.cxx @@ -1,11 +1,11 @@ -/*- - * Copyright 2016 Vsevolod Stakhov +/* + * Copyright 2024 Vsevolod Stakhov * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, @@ -1725,7 +1725,7 @@ rspamd_chartable_process_word_utf(struct rspamd_task *task, while (p < end) { uc = *p++; - if (((gint32) uc) < 0) { + if (((int32_t) uc) < 0) { break; } |