1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00

- Fix build on armv6

Approved by:	portmgr blanket
This commit is contained in:
Dmitry Marakasov 2015-08-12 21:06:25 +00:00
parent d1e3b64213
commit a1765ce513
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=394039

View File

@ -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