diff options
Diffstat (limited to 'sysdeps/posix/sprofil.c')
-rw-r--r-- | sysdeps/posix/sprofil.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sysdeps/posix/sprofil.c b/sysdeps/posix/sprofil.c index 8f3270e1fc..afb6d2f84e 100644 --- a/sysdeps/posix/sprofil.c +++ b/sysdeps/posix/sprofil.c @@ -61,12 +61,12 @@ static unsigned int overflow_counter; static struct region default_overflow_region = { - offset: 0, - nsamples: 1, - scale: 2, - sample: { &overflow_counter }, - start: 0, - end: ~(size_t) 0 + .offset = 0, + .nsamples = 1, + .scale = 2, + .sample = { &overflow_counter }, + .start = 0, + .end = ~(size_t) 0 }; static struct prof_info prof_info; |