diff options
| author | fliiiix <hi@l33t.name> | 2026-06-09 15:33:29 +0200 |
|---|---|---|
| committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2026-06-11 23:23:40 +0200 |
| commit | 9f936615e80ec702af7d70c31b832ee1ed41e005 (patch) | |
| tree | a173632c687f28d1b63f9b27934f5c6608528e87 | |
| parent | 7818a6654c05edafed3b22510c5789c2107bd047 (diff) | |
| download | ayatana-indicator-display-9f936615e80ec702af7d70c31b832ee1ed41e005.tar.gz ayatana-indicator-display-9f936615e80ec702af7d70c31b832ee1ed41e005.tar.bz2 ayatana-indicator-display-9f936615e80ec702af7d70c31b832ee1ed41e005.zip | |
Fix cppcheck warning has no initializer
cppcheck 2.21.0
| -rw-r--r-- | src/service.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/service.cpp b/src/service.cpp index ced370c..251df5b 100644 --- a/src/service.cpp +++ b/src/service.cpp @@ -50,9 +50,9 @@ extern "C" typedef struct { - guint nTempLow; - guint nTempHigh; - const gchar *sName; + guint nTempLow{}; + guint nTempHigh{}; + const gchar *sName = nullptr; } TempProfile; TempProfile m_lTempProfiles[] = |
