Reacted on warnings of -Wunused-but-set-variable

This commit is contained in:
Thomas Schmitt 2011-07-04 10:58:24 +00:00
parent ee56d3c86b
commit 8deeff4de8
2 changed files with 2 additions and 3 deletions

View File

@ -626,7 +626,7 @@ ex:
int Xorriso_copy_implicit_properties(struct XorrisO *xorriso, IsoDir *dir,
char *full_img_path, char *img_path, char *full_disk_path, int flag)
{
int ret, nfic, nic, nfdc, d, i, hide_attrs;
int ret, nfic, nic, nfdc, d, i;
char *nfi= NULL, *ni= NULL, *nfd= NULL, *cpt;
struct stat stbuf;
@ -674,7 +674,6 @@ int Xorriso_copy_implicit_properties(struct XorrisO *xorriso, IsoDir *dir,
if(!(flag & 2)) {
/* Check for mkisofs-style hidings */
hide_attrs= 0;
ret= Xorriso_path_is_hidden(xorriso, nfd, 0);
if(ret<0)
goto ex;

View File

@ -1 +1 @@
#define Xorriso_timestamP "2011.07.04.092828"
#define Xorriso_timestamP "2011.07.04.105800"