Fixed a code typo which luckily had no negative effect with existing use cases

This commit is contained in:
Thomas Schmitt 2017-08-07 15:41:29 +02:00
parent 4bb3dbf4c4
commit 2cab2102e0
2 changed files with 2 additions and 2 deletions

View File

@ -4008,7 +4008,7 @@ int Xorriso_hfsplus_file_creator_type(struct XorrisO *xorriso, char *path,
int ret; int ret;
IsoNode *node; IsoNode *node;
if(in_node == NULL && !(flag * 1)) { if(in_node == NULL && !(flag & 1)) {
ret= Xorriso_node_from_path(xorriso, NULL, path, &node, 0); ret= Xorriso_node_from_path(xorriso, NULL, path, &node, 0);
if(ret <= 0) if(ret <= 0)
return(ret); return(ret);

View File

@ -1 +1 @@
#define Xorriso_timestamP "2017.07.21.105310" #define Xorriso_timestamP "2017.08.07.134036"