Fix compile errors detected by the older gcc 4.8.5 compiler:-

sesexec.c: In function ‘main’:
sesexec.c:521:1: error: control reaches end of non-void function [-Werror=return-type]

sound.c: In function ‘process_pcm_message’:
sound.c:1123:21: error: ‘for’ loop initial declarations are only allowed in C99 mode
                     for (int i = 0; i < send_silence_times; i++)
                     ^
sound.c:1123:21: note: use option -std=c99 or -std=gnu99 to compile your code

These fixes are in line with our coding standard and have no functional change.
This commit is contained in:
matt335672 2023-06-07 20:18:38 +01:00
parent 3c98420517
commit 7cf9101407
2 changed files with 3 additions and 2 deletions

View File

@ -1118,9 +1118,10 @@ process_pcm_message(int id, int size, struct stream *s)
char *buf = (char *) g_malloc(g_bbuf_size, 0);
if (buf != NULL)
{
int i;
silence_start_time = g_time3();
sending_silence = 1;
for (int i = 0; i < send_silence_times; i++)
for (i = 0; i < send_silence_times; i++)
{
g_memset(buf, 0, g_bbuf_size);
sound_send_wave_data_chunk(buf, g_bbuf_size);

View File

@ -517,5 +517,5 @@ main(int argc, char **argv)
}
g_deinit();
g_exit(error);
return error;
}