diff options
author | Not Zed <NotZed@Ximian.com> | 2004-02-19 14:06:47 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-02-19 14:06:47 +0800 |
commit | 90b2bfbf8ce3e8e5fdccf3457d9042226306694a (patch) | |
tree | d1e6d4781019f171d90eeb84ed3bcf59e3e6976e /e-util | |
parent | b4aa2bc82e531705337d88daa2671a3c098c3eb5 (diff) | |
download | gsoc2013-evolution-90b2bfbf8ce3e8e5fdccf3457d9042226306694a.tar.gz gsoc2013-evolution-90b2bfbf8ce3e8e5fdccf3457d9042226306694a.tar.zst gsoc2013-evolution-90b2bfbf8ce3e8e5fdccf3457d9042226306694a.zip |
include string.h, fixes 64 bit crash. From David Mosberger.
2004-02-19 Not Zed <NotZed@Ximian.com>
* e-pilot-util.c: include string.h, fixes 64 bit crash. From
David Mosberger.
svn path=/trunk/; revision=24792
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/ChangeLog | 5 | ||||
-rw-r--r-- | e-util/e-pilot-util.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 96b819ccbf..94b3f4a095 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,8 @@ +2004-02-19 Not Zed <NotZed@Ximian.com> + + * e-pilot-util.c: include string.h, fixes 64 bit crash. From + David Mosberger. + 2004-02-03 Chris Toshok <toshok@ximian.com> * e-html-utils.c (e_text_to_html_full): add callto:, h323:, and diff --git a/e-util/e-pilot-util.c b/e-util/e-pilot-util.c index 9e9c13d2c0..7ce6f3cbdc 100644 --- a/e-util/e-pilot-util.c +++ b/e-util/e-pilot-util.c @@ -20,6 +20,7 @@ * Boston, MA 02111-1307, USA. */ +#include <string.h> #include <stdlib.h> #include <time.h> #include <libxml/parser.h> |