Fix build warning for shadowed variable.

This commit is contained in:
Andreas Schneider 2008-04-17 15:02:52 +02:00
parent 9c90b113e8
commit cb14a9aaa5

View file

@ -4,12 +4,12 @@
START_TEST (check_csync_vio_file_stat_new)
{
csync_vio_file_stat_t *stat = NULL;
csync_vio_file_stat_t *tstat = NULL;
stat = csync_vio_file_stat_new();
fail_if(stat == NULL, NULL);
tstat = csync_vio_file_stat_new();
fail_if(tstat == NULL, NULL);
csync_vio_file_stat_destroy(stat);
csync_vio_file_stat_destroy(tstat);
}
END_TEST