.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /// Unsigned expressions cannot be lesser than zero. Presence of |
---|
2 | 3 | /// comparisons 'unsigned (<|<=|>|>=) 0' often indicates a bug, |
---|
3 | 4 | /// usually wrong type of variable. |
---|
.. | .. |
---|
11 | 12 | /// result is used to avoid false positives difficult to detect by other ways |
---|
12 | 13 | /// |
---|
13 | 14 | // Confidence: Average |
---|
14 | | -// Copyright: (C) 2015 Andrzej Hajda, Samsung Electronics Co., Ltd. GPLv2. |
---|
| 15 | +// Copyright: (C) 2015 Andrzej Hajda, Samsung Electronics Co., Ltd. |
---|
15 | 16 | // URL: http://coccinelle.lip6.fr/ |
---|
16 | 17 | // Options: --all-includes |
---|
17 | 18 | |
---|