Hopefully finally enabled correct compilation on Debian mips and mipsel

This commit is contained in:
Thomas Schmitt 2015-09-15 16:22:43 +00:00
parent 57aa8f9db7
commit 2c2d695c16
2 changed files with 3 additions and 2 deletions

View File

@ -279,7 +279,8 @@ int Xorriso_fake_stbuf(struct XorrisO *xorriso, char *path, struct stat *stbuf,
stbuf->st_mode|= S_IFLNK;
else if(LIBISO_ISCHR(*node)) {
stbuf->st_mode|= S_IFCHR;
Xorriso_node_get_dev(xorriso, *node, path, &(stbuf->st_rdev), 0);
Xorriso_node_get_dev(xorriso, *node, path, &dev_number, 0);
stbuf->st_rdev= dev_number;
} else if(LIBISO_ISBLK(*node)) {
stbuf->st_mode|= S_IFBLK;
/* ts B11124:

View File

@ -1 +1 @@
#define Xorriso_timestamP "2015.09.06.194259"
#define Xorriso_timestamP "2015.09.15.182031"