diff options
Diffstat (limited to 'extra/kobodeluxe/kobodeluxe-0.5.1-glibc2.10.patch')
-rw-r--r-- | extra/kobodeluxe/kobodeluxe-0.5.1-glibc2.10.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/extra/kobodeluxe/kobodeluxe-0.5.1-glibc2.10.patch b/extra/kobodeluxe/kobodeluxe-0.5.1-glibc2.10.patch new file mode 100644 index 000000000..1095cc1c7 --- /dev/null +++ b/extra/kobodeluxe/kobodeluxe-0.5.1-glibc2.10.patch @@ -0,0 +1,11 @@ +--- graphics/window.cpp ++++ graphics/window.cpp +@@ -398,7 +398,7 @@ + */ + if(token) + { +- char *tok = strchr(txt, token); ++ const char *tok = strchr(txt, token); + if(tok) + tokpos = tok-txt; + else |