X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=test%2Ftstnmem.c;h=72677443be0dfeed9677bb9c33b00e72dd193fca;hp=aeda13ae939a54c046566be4112469dd3829cd5a;hb=88d3bedf772316f87e1996f655ccf8d1e2589755;hpb=ee6ab2ee3a9ee1a8c65d7272ec7fba1d886f5af0 diff --git a/test/tstnmem.c b/test/tstnmem.c index aeda13a..7267744 100644 --- a/test/tstnmem.c +++ b/test/tstnmem.c @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2008 Index Data + * Copyright (C) 1995-2010 Index Data * See the file LICENSE for details. */ @@ -26,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; @@ -40,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); @@ -55,6 +55,7 @@ int main (int argc, char **argv) /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab