diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2015-08-12 21:06:25 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2015-08-12 21:06:25 +0000 |
commit | a1765ce513cecfe93c3c5d2a20114a135d12dfb9 (patch) | |
tree | 18b58e4ea6827e00b0c42d32d93ff700364019a4 /audio/ncmpcpp/files/patch-src_bindings.cpp | |
parent | - Split the Icinga port into two separate ports. One for the backend, one for... (diff) |
- Fix build on armv6
Approved by: portmgr blanket
Notes
Notes:
svn path=/head/; revision=394039
Diffstat (limited to 'audio/ncmpcpp/files/patch-src_bindings.cpp')
-rw-r--r-- | audio/ncmpcpp/files/patch-src_bindings.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/audio/ncmpcpp/files/patch-src_bindings.cpp b/audio/ncmpcpp/files/patch-src_bindings.cpp new file mode 100644 index 000000000000..2110552cd32f --- /dev/null +++ b/audio/ncmpcpp/files/patch-src_bindings.cpp @@ -0,0 +1,11 @@ +--- src/bindings.cpp.orig 2015-07-05 02:18:34 UTC ++++ src/bindings.cpp +@@ -108,7 +108,7 @@ Actions::BaseAction *parseActionLine(con + // push single character into input queue + std::string arg = getEnclosedString(line, '"', '"', 0); + Key k = stringToSpecialKey(arg); +- auto queue = std::vector<int>{ k.getChar() }; ++ auto queue = std::vector<int>{ (int)k.getChar() }; + if (k != Key::noOp) + result = new Actions::PushCharacters(&Global::wFooter, std::move(queue)); + else |