summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Klug <john.klug@multitech.com>2023-12-12 00:40:58 -0600
committerJohn Klug <john.klug@multitech.com>2023-12-12 00:40:58 -0600
commitc854bb5872898fc0e3527094341132e50e456eeb (patch)
tree7941940072fe4f7e75ca44222e199e4d2b09ccc1
parent937e17d415f6719cdac0545d7999bc305c742739 (diff)
downloadmts-io-sysfs-c854bb5872898fc0e3527094341132e50e456eeb.tar.gz
mts-io-sysfs-c854bb5872898fc0e3527094341132e50e456eeb.tar.bz2
mts-io-sysfs-c854bb5872898fc0e3527094341132e50e456eeb.zip
store function is void type
-rw-r--r--src/Device/Device.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Device/Device.cpp b/src/Device/Device.cpp
index cb02d22..680cf44 100644
--- a/src/Device/Device.cpp
+++ b/src/Device/Device.cpp
@@ -769,7 +769,7 @@ void Device::store(std::string name, std::string value) {
if(retval == -1) {
simpleError("Could not set GPIO value",errno,111);
}
- return 0;
+ return;
}
}
}