summaryrefslogtreecommitdiff
path: root/libloragw/src
diff options
context:
space:
mode:
authorHarsh Sharma <harsh.sharma@multitech.com>2022-05-05 17:49:11 -0500
committerHarsh Sharma <harsh.sharma@multitech.com>2022-05-05 17:49:11 -0500
commitf6c2760fa5c4c27014454014d38dffe361a24bac (patch)
tree34821fc3d92281956ec5245b6df6d78b1dca7091 /libloragw/src
parent3b7195f39bb90e269e008adf2736441943ee7f63 (diff)
downloadlora_gateway_mtac_full-f6c2760fa5c4c27014454014d38dffe361a24bac.tar.gz
lora_gateway_mtac_full-f6c2760fa5c4c27014454014d38dffe361a24bac.tar.bz2
lora_gateway_mtac_full-f6c2760fa5c4c27014454014d38dffe361a24bac.zip
Bug fixes: gps disable should be void, all gps stream invalid results should reset the loop5.0.14
Diffstat (limited to 'libloragw/src')
-rw-r--r--libloragw/src/loragw_gps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libloragw/src/loragw_gps.c b/libloragw/src/loragw_gps.c
index e13b85b..736626d 100644
--- a/libloragw/src/loragw_gps.c
+++ b/libloragw/src/loragw_gps.c
@@ -280,7 +280,7 @@ int lgw_gps_enable() {
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
-int lgw_gps_disable() {
+void lgw_gps_disable() {
(void)gps_close(&gpsdata);
}