diff options
| author | Tyge Løvset <[email protected]> | 2023-05-01 10:00:07 +0200 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2023-05-01 10:02:12 +0200 |
| commit | f916573e2b3652d9b3f6fb82aadd5f2cfb3ce2fe (patch) | |
| tree | 22283c2d74f2cac441ce04b3106e144f440b8137 /misc/examples/new_list.c | |
| parent | 49e7d9cc0a888b0b19aa4e737d55a2bc33bec824 (diff) | |
| download | STC-modified-f916573e2b3652d9b3f6fb82aadd5f2cfb3ce2fe.tar.gz STC-modified-f916573e2b3652d9b3f6fb82aadd5f2cfb3ce2fe.zip | |
Remove warnings when using -Wextra.
Diffstat (limited to 'misc/examples/new_list.c')
| -rw-r--r-- | misc/examples/new_list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/examples/new_list.c b/misc/examples/new_list.c index 8b291d34..14fabb4a 100644 --- a/misc/examples/new_list.c +++ b/misc/examples/new_list.c @@ -61,7 +61,7 @@ int main() clist_float_sort(&flst); c_foreach (i, clist_float, flst) - printf(" %g", *i.ref); + printf(" %g", (double)*i.ref); puts(""); clist_float_drop(&flst); |
