diff options
author | Markus Nigbur <pyrania@gentoo.org> | 2004-11-07 19:50:11 +0000 |
---|---|---|
committer | Markus Nigbur <pyrania@gentoo.org> | 2004-11-07 19:50:11 +0000 |
commit | 3d1fe1e3db58788663c87d45344b13d34c7ac72d (patch) | |
tree | c155e7b89058ee38f7903808acc9f17937a756e4 /x11-misc/lineakd/files | |
parent | argh, removing the doubled entry in changelog (Manifest recommit) (diff) | |
download | gentoo-2-3d1fe1e3db58788663c87d45344b13d34c7ac72d.tar.gz gentoo-2-3d1fe1e3db58788663c87d45344b13d34c7ac72d.tar.bz2 gentoo-2-3d1fe1e3db58788663c87d45344b13d34c7ac72d.zip |
Bugfix for amd64. See bug #63378.
Diffstat (limited to 'x11-misc/lineakd/files')
-rw-r--r-- | x11-misc/lineakd/files/lkey-cast.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/x11-misc/lineakd/files/lkey-cast.patch b/x11-misc/lineakd/files/lkey-cast.patch new file mode 100644 index 000000000000..0779451f3754 --- /dev/null +++ b/x11-misc/lineakd/files/lkey-cast.patch @@ -0,0 +1,12 @@ +diff -Naur lineakd-0.7.2_/lineakd/lkey.cpp lineakd-0.7.2/lineakd/lkey.cpp +--- lineakd-0.7.2_/lineakd/lkey.cpp 2004-11-07 20:35:27.436720920 +0100 ++++ lineakd-0.7.2/lineakd/lkey.cpp 2004-11-07 20:35:40.906673176 +0100 +@@ -39,7 +39,7 @@ + name1|name2|name3 */ + string key = keyname; + int index; +- while (((unsigned int)(index = key.find('|'))) != string::npos) { ++ while (((index = key.find('|'))) != string::npos) { + toggle = true; + dtoggle = true; + string tmp = key.substr(0,index); |