mirror of
https://github.com/holub/mame
synced 2025-06-04 03:46:29 +03:00
Fixed GCC compile error.
This commit is contained in:
parent
ebbd232ba3
commit
43021ec0e2
@ -621,7 +621,7 @@ int main(int argc, char *argv[])
|
||||
rsound = malloc(info.samplerate * sizeof(*rsound));
|
||||
if (lsound == NULL || rsound == NULL)
|
||||
{
|
||||
fprintf(stderr, "Out of memory allocating sound buffers of %d bytes\n", info.samplerate * sizeof(*rsound));
|
||||
fprintf(stderr, "Out of memory allocating sound buffers of %d bytes\n", (INT32)(info.samplerate * sizeof(*rsound)));
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user