Remove unnecessary ssize_t posix-ism

ssize_t is not always available and the cast it was used in wasn't
necessary in the first place, the value already has the right type.

Note that the field malloc_limit is an int64_t in JSMemoryUsage whereas it
is a size_t in JSMallocState.
This commit is contained in:
Ben Noordhuis 2024-02-16 10:25:29 +01:00
parent c06af876f6
commit 3bb2ca360e

View File

@ -6242,7 +6242,7 @@ void JS_DumpMemoryUsage(FILE *fp, const JSMemoryUsage *s, JSRuntime *rt)
"BigNum " "BigNum "
#endif #endif
CONFIG_VERSION " version, %d-bit, malloc limit: %"PRId64"\n\n", CONFIG_VERSION " version, %d-bit, malloc limit: %"PRId64"\n\n",
(int)sizeof(void *) * 8, (int64_t)(ssize_t)s->malloc_limit); (int)sizeof(void *) * 8, s->malloc_limit);
#if 1 #if 1
if (rt) { if (rt) {
static const struct { static const struct {