From: Martin Mares Date: Mon, 10 May 2004 14:12:16 +0000 (+0000) Subject: stralloc -> strdup. X-Git-Tag: holmes-import~1065 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=37571cab6e11ddca40e7b1370b4735d0b5eb21a7;p=libucw.git stralloc -> strdup. --- diff --git a/lib/hash-test.c b/lib/hash-test.c index 66a07faa..25e4ff4d 100644 --- a/lib/hash-test.c +++ b/lib/hash-test.c @@ -98,7 +98,7 @@ static void test(void) { char x[32]; sprintf(x, "abc%d", i); - test_new(stralloc(x)); + test_new(xstrdup(x)); } for (i=0; i<1024; i++) {