1
0
Fork 0

Hide warning

Both values >= 0
This commit is contained in:
hpi1 2015-11-10 13:32:38 +02:00
parent 790bb448ae
commit cf0dbac13d
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ void bd_debug(const char *file, int line, uint32_t mask, const char *format, ...
} else {
len += len2;
if (len >= sizeof(buffer)) {
if ((size_t)len >= sizeof(buffer)) {
len = sizeof(buffer);
}