commit | 8685b17ab14a187eae08399153b9ec6bace2ab9b | [log] [tgz] |
---|---|---|
author | Zhikui Ren <zhikui.ren@intel.com> | Tue Jun 29 15:16:52 2021 -0700 |
committer | Zhikui Ren <zhikui.ren@intel.com> | Tue Jun 29 15:20:37 2021 -0700 |
tree | 471adf88fda1ab5737b4981d475cca9a611aa03d | |
parent | 18fffd3d4d426ad84059a1e474665a0e31926f5f [diff] |
fix klockwork issues Add return 0 for int main() Signed-off-by: Zhikui Ren <zhikui.ren@intel.com> Change-Id: I4ff6ef571827b17b89ed653c420e7f9964ab42f5
diff --git a/src/CPUSensorMain.cpp b/src/CPUSensorMain.cpp index eb619b9..de8607b 100644 --- a/src/CPUSensorMain.cpp +++ b/src/CPUSensorMain.cpp
@@ -775,4 +775,5 @@ setupManufacturingModeMatch(*systemBus); io.run(); + return 0; }
diff --git a/src/ExitAirTempSensor.cpp b/src/ExitAirTempSensor.cpp index 1cd55b8..c0aae42 100644 --- a/src/ExitAirTempSensor.cpp +++ b/src/ExitAirTempSensor.cpp
@@ -1002,4 +1002,5 @@ } io.run(); + return 0; }
diff --git a/src/FanMain.cpp b/src/FanMain.cpp index 30f0ca4..465ce1b 100644 --- a/src/FanMain.cpp +++ b/src/FanMain.cpp
@@ -527,4 +527,5 @@ setupManufacturingModeMatch(*systemBus); io.run(); + return 0; }
diff --git a/src/MCUTempSensor.cpp b/src/MCUTempSensor.cpp index 2f5e64c..cdc4fea 100644 --- a/src/MCUTempSensor.cpp +++ b/src/MCUTempSensor.cpp
@@ -312,4 +312,5 @@ setupManufacturingModeMatch(*systemBus); io.run(); + return 0; }