summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/evdev
diff options
context:
space:
mode:
authorflacs <tilkax@gmail.com>2015-08-04 18:54:31 +0200
committerflacs <tilkax@gmail.com>2015-08-04 18:54:31 +0200
commit0aad44c98014b058235f0a95dc48e77cade28c33 (patch)
treeed114d195d5c502c1d64014b90ca43a0b2d9961b /Source/Core/InputCommon/ControllerInterface/evdev
parent972faf42ed4703fd6f1ddcd258a883a580e135b3 (diff)
parent5a05187b3be39a590ad43a7943088d5d5a082569 (diff)
Merge pull request #2753 from Tilka/fix_warnings
Fix some warnings
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/evdev')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp b/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp
index e7a0ae2525..9e62a02378 100644
--- a/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp
+++ b/Source/Core/InputCommon/ControllerInterface/evdev/evdev.cpp
@@ -28,7 +28,7 @@ static std::string GetName(const std::string& devnode)
std::string res = libevdev_get_name(dev);
libevdev_free(dev);
close(fd);
- return std::move(res);
+ return res;
}
void Init(std::vector<Core::Device*> &controllerDevices)