Message ID | 20241111065809.3814-1-zhujun2@cmss.chinamobile.com |
---|---|
State | New |
Headers | show |
Series | leds: ss4200: Fix the wrong format specifier | expand |
On Sun, 10 Nov 2024 22:58:09 -0800, Zhu Jun wrote: > The format specifier of "signed int" in sprintf() should be "%d", not > "%u". > > Applied, thanks! [1/1] leds: ss4200: Fix the wrong format specifier commit: e8501858035b1f95468da525e7357c8c33811b88 -- Lee Jones [李琼斯]
diff --git a/drivers/leds/leds-ss4200.c b/drivers/leds/leds-ss4200.c index 2ef9fc7371bd..f24ca75c7cb1 100644 --- a/drivers/leds/leds-ss4200.c +++ b/drivers/leds/leds-ss4200.c @@ -451,7 +451,7 @@ static ssize_t blink_show(struct device *dev, int blinking = 0; if (nasgpio_led_get_attr(led, GPO_BLINK)) blinking = 1; - return sprintf(buf, "%u\n", blinking); + return sprintf(buf, "%d\n", blinking); } static ssize_t blink_store(struct device *dev,
The format specifier of "signed int" in sprintf() should be "%d", not "%u". Signed-off-by: Zhu Jun <zhujun2@cmss.chinamobile.com> --- drivers/leds/leds-ss4200.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)