Re: [PATCH] libdecnumber/dpd/decimal64: Fix compiler warning from Clang 15

2022-11-11 Thread Philippe Mathieu-Daudé
On 11/11/22 08:43, Thomas Huth wrote: On 10/11/2022 21.00, Philippe Mathieu-Daudé wrote: On 10/11/22 14:11, Thomas Huth wrote: Clang 15 from Fedora 37 complains:   ../libdecnumber/dpd/decimal64.c:620:8: error: variable 'n' set but   not used [-Werror,-Wunused-but-set-variable]     Int  n; 

Re: [PATCH] libdecnumber/dpd/decimal64: Fix compiler warning from Clang 15

2022-11-10 Thread Thomas Huth
On 10/11/2022 21.00, Philippe Mathieu-Daudé wrote: On 10/11/22 14:11, Thomas Huth wrote: Clang 15 from Fedora 37 complains:   ../libdecnumber/dpd/decimal64.c:620:8: error: variable 'n' set but   not used [-Werror,-Wunused-but-set-variable]     Int  n; /* output bunch counter

Re: [PATCH] libdecnumber/dpd/decimal64: Fix compiler warning from Clang 15

2022-11-10 Thread Philippe Mathieu-Daudé
On 10/11/22 14:11, Thomas Huth wrote: Clang 15 from Fedora 37 complains: ../libdecnumber/dpd/decimal64.c:620:8: error: variable 'n' set but not used [-Werror,-Wunused-but-set-variable] Int n; /* output bunch counter */ ^ 1 error generated. Remove the unus

Re: [PATCH] libdecnumber/dpd/decimal64: Fix compiler warning from Clang 15

2022-11-10 Thread Cédric Le Goater
On 11/10/22 14:11, Thomas Huth wrote: Clang 15 from Fedora 37 complains: ../libdecnumber/dpd/decimal64.c:620:8: error: variable 'n' set but not used [-Werror,-Wunused-but-set-variable] Int n; /* output bunch counter */ ^ 1 error generated. Remove the unus

[PATCH] libdecnumber/dpd/decimal64: Fix compiler warning from Clang 15

2022-11-10 Thread Thomas Huth
Clang 15 from Fedora 37 complains: ../libdecnumber/dpd/decimal64.c:620:8: error: variable 'n' set but not used [-Werror,-Wunused-but-set-variable] Int n; /* output bunch counter */ ^ 1 error generated. Remove the unused variable to silence the compiler warning.