X-Git-Url: https://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-hash.c;h=57c094ccddd609ee530c326fb45f69ce2cd78b92;hb=dbf55f6694dbf710b44e3ae76a46fd8b8f993f7c;hp=ecfe357ccdf161d485e722db87ace67b6d68c4b8;hpb=83b1d6414af952ac03022bf956d84a21f6132d0e;p=gnulib.git diff --git a/tests/test-hash.c b/tests/test-hash.c index ecfe357cc..57c094ccd 100644 --- a/tests/test-hash.c +++ b/tests/test-hash.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2009-2011 Free Software Foundation, Inc. + * Copyright (C) 2009-2013 Free Software Foundation, Inc. * Written by Jim Meyering * * This program is free software: you can redistribute it and/or modify @@ -208,9 +208,9 @@ main (int argc, char **argv) { char buf[50]; char const *p = uinttostr (i, buf); - char *dup = strdup (p); - ASSERT (dup); - insert_new (ht, dup); + char *p_dup = strdup (p); + ASSERT (p_dup); + insert_new (ht, p_dup); } break;