diff options
Diffstat (limited to 'test/reloc.c')
| -rw-r--r-- | test/reloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/reloc.c b/test/reloc.c index 70cba28..2851cdb 100644 --- a/test/reloc.c +++ b/test/reloc.c @@ -2,6 +2,6 @@ float get_value(unsigned x) { - static const float values [] = {1.1f, 1.2f, 1.3f, 1.4f}; - return x < 4 ? values[x] : 0.0f; + static float values [] = {1.1f, 1.2f, 1.3f, 1.4f}; + return x < 4 ? values[x] : 0.0f; } |