util: fix a comment to use the right decimal marker for english

This commit is contained in:
Peter Hutterer 2024-09-11 11:18:16 +10:00
parent 22c94fd916
commit e3091a1802

View file

@ -99,7 +99,7 @@ xalloc(size_t size)
{
void *p;
/* We never need to alloc anything more than 1,5 MB so we can assume
/* We never need to alloc anything more than 1.5 MB so we can assume
* if we ever get above that something's going wrong */
if (size > 1536 * 1024)
assert(!"bug: internal malloc size limit exceeded");