X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Ftstnmem.c;h=f47392947ca2e4e98fb0516c66d022cb855b9a87;hb=8526300b58a12ecbb6e48b320839e28e4460a925;hp=4d51ed70e83df1961c0a79482322bcc9b8bcd96d;hpb=dc4414aeda179bc8ebe3fc46ac53e4a24d265d16;p=yaz-moved-to-github.git diff --git a/test/tstnmem.c b/test/tstnmem.c index 4d51ed7..f473929 100644 --- a/test/tstnmem.c +++ b/test/tstnmem.c @@ -1,8 +1,6 @@ -/* - * Copyright (C) 1995-2007, Index Data ApS +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2008 Index Data * See the file LICENSE for details. - * - * $Id: tstnmem.c,v 1.8 2007-04-17 20:26:18 adam Exp $ */ #if HAVE_CONFIG_H @@ -28,7 +26,7 @@ void tst(void) for (j = 1; j<500; j++) { - cp = nmem_malloc(n, j); + cp = (char *) nmem_malloc(n, j); YAZ_CHECK(cp); if (sizeof(long) >= j) *(long*) cp = 123L; @@ -42,7 +40,7 @@ void tst(void) for (j = 2000; j<20000; j+= 2000) { - cp = nmem_malloc(n, j); + cp = (char *) nmem_malloc(n, j); YAZ_CHECK(cp); } nmem_destroy(n);