From: Adam Dickmeiss Date: Mon, 29 Jan 1996 17:52:05 +0000 (+0000) Subject: Minor change - removed unnecessary &. X-Git-Url: http://git.indexdata.com/?p=egate.git;a=commitdiff_plain;h=9f1933e4107d7d50f1cd102031f8d22d98ab673c Minor change - removed unnecessary &. --- diff --git a/fml/fmlmem.c b/fml/fmlmem.c index e4bec81..70b3e2c 100644 --- a/fml/fmlmem.c +++ b/fml/fmlmem.c @@ -45,7 +45,10 @@ * FML interpreter. Europagate, 1995 * * $Log: fmlmem.c,v $ - * Revision 1.12 1995/05/16 09:39:34 adam + * Revision 1.13 1996/01/29 17:52:05 adam + * Minor change - removed unnecessary &. + * + * Revision 1.12 1995/05/16 09:39:34 adam * LICENSE. * * Revision 1.11 1995/03/02 10:18:48 adam @@ -163,7 +166,7 @@ static struct fml_atom *atom_copy (Fml fml, struct fml_atom *a) a0 = a1 = atom_malloc (fml); while (a) { - memcpy (&a1->buf, &a->buf, FML_ATOM_BUF); + memcpy (a1->buf, a->buf, FML_ATOM_BUF); if (!a->next) break; a = a->next;