Avoid warnings about missing initializers.

This commit is contained in:
Petter Reinholdtsen 2013-10-13 22:41:41 +02:00
parent 8cdeda51f4
commit 3fd6cafe9f
2 changed files with 2 additions and 2 deletions

View File

@ -138,7 +138,7 @@ int fd_clearstats()
int fd_showstats()
{
struct profile_total total={NULL, 0, "Total", 0,0,0};
struct profile_total total={NULL, 0, "Total", 0,0,0,0};
stats_head = sort(stats_head);

View File

@ -391,7 +391,7 @@ struct overlay_buffer;
struct overlay_frame;
struct broadcast;
#define STRUCT_SCHED_ENT_UNUSED {.poll.fd=-1, ._poll_index=-1,}
#define STRUCT_SCHED_ENT_UNUSED {.poll={.fd=-1}, ._poll_index=-1,}
extern int overlayMode;