Skip to content

Commit

Permalink
fix: function declaration isn't a prototype
Browse files Browse the repository at this point in the history
  • Loading branch information
InfiniteYuan committed Jan 10, 2024
1 parent 082913b commit fccea02
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions components/led/lightbulb_driver/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# ChangeLog

## v0.5.3 - 2024-01-10

### Bug Fixes:

* fix: function declaration isn't a prototype [-Werror=strict-prototypes]

## v0.5.2 - 2023-10-28

### Enhancements:
Expand Down
2 changes: 1 addition & 1 deletion components/led/lightbulb_driver/idf_component.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "0.5.2"
version: "0.5.3"
description: Provide multiple dimming driver solutions to easily build lightbulb applications
url: https://github.com/espressif/esp-iot-solution/tree/master/components/led/lightbulb_driver
dependencies:
Expand Down
2 changes: 1 addition & 1 deletion components/led/lightbulb_driver/include/lightbulb.h
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ int16_t lightbulb_get_cct_kelvin(void);
*
* @return int8_t
*/
int8_t lightbulb_get_brightness();
int8_t lightbulb_get_brightness(void);

/**
* @brief Get on/off status
Expand Down

0 comments on commit fccea02

Please sign in to comment.