diff options
author | John Klug <john.klug@multitech.com> | 2023-12-12 00:40:58 -0600 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2023-12-12 00:40:58 -0600 |
commit | c854bb5872898fc0e3527094341132e50e456eeb (patch) | |
tree | 7941940072fe4f7e75ca44222e199e4d2b09ccc1 | |
parent | 937e17d415f6719cdac0545d7999bc305c742739 (diff) | |
download | mts-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.cpp | 2 |
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; } } } |