mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-26 06:55:59 +03:00
Fix build warning for shadowed variable.
This commit is contained in:
parent
9c90b113e8
commit
cb14a9aaa5
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in a new issue