From: Dekel Tsur Date: Mon, 19 Feb 2001 17:33:14 +0000 (+0000) Subject: Fix compilation problem. X-Git-Tag: 1.6.10~21593 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=71794f7d817f1f2e83ca8af7892ea7879dbc5d62;p=features.git Fix compilation problem. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1537 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/mathed/ChangeLog b/src/mathed/ChangeLog index 7d29a422e2..95a660e872 100644 --- a/src/mathed/ChangeLog +++ b/src/mathed/ChangeLog @@ -1,3 +1,6 @@ +2001-02-19 Dekel Tsur + + * array.C (MathedArray): Fix compilation problem. 2001-02-14 André Pönitz diff --git a/src/mathed/array.C b/src/mathed/array.C index 661fee1ae8..b5217e355c 100644 --- a/src/mathed/array.C +++ b/src/mathed/array.C @@ -21,7 +21,7 @@ void * my_memcpy(void * ps_in, void const * pt_in, size_t n) MathedArray::MathedArray() - : bf_(1, 0), last_(0) + : bf_(1, '\0'), last_(0) {} MathedArray::~MathedArray()