diff options
author | Tor Lillqvist <tml@novell.com> | 2008-08-03 21:00:33 +0000 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2008-08-03 21:00:33 +0000 |
commit | b03342bd30a99c02bcf0554354e540e6443ad3d2 (patch) | |
tree | 26fadaaff6e8882a74b217faa0734a0860d6ffeb | |
parent | f74acc26545a86625a1de674d7a787a98631c065 (diff) | |
download | pango-b03342bd30a99c02bcf0554354e540e6443ad3d2.tar.gz |
Include <string.h> for strlen() prototype.
2008-08-03 Tor Lillqvist <tml@novell.com>
* pango/pango-bidi-type.c: Include <string.h> for strlen()
prototype.
svn path=/trunk/; revision=2668
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | pango/pango-bidi-type.c | 2 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2008-08-03 Tor Lillqvist <tml@novell.com> + + * pango/pango-bidi-type.c: Include <string.h> for strlen() + prototype. + 2008-06-29 Behdad Esfahbod <behdad@gnome.org> Bug 540592 – Crash in HB_GSUB_Apply_String with Linux-Libertine font diff --git a/pango/pango-bidi-type.c b/pango/pango-bidi-type.c index 7eb2fb48..17e9fc83 100644 --- a/pango/pango-bidi-type.c +++ b/pango/pango-bidi-type.c @@ -21,6 +21,8 @@ #include "config.h" +#include <string.h> + #include "pango-bidi-type.h" #include "mini-fribidi/fribidi.h" |