Fix compilation on i686 platforms.

Fixes #135
This commit is contained in:
Pascal Obry
2016-11-27 23:00:44 +01:00
parent 908994462e
commit 342d55ff82
+1 -1
View File
@@ -237,7 +237,7 @@ void debug_print_flags(int flags)
void debug_print_descriptor(struct fuse_file_info* info)
{
char file_path[MAX_PATH_SIZE];
openfile* of = (openfile *)info->fh;
openfile* of = (openfile *)(uintptr_t)info->fh;
get_file_path_from_fd(of->fd, file_path, sizeof(file_path));
debugf(DBG_LEVEL_EXT, KCYN "descriptor localfile=[%s] fd=%lld", file_path,
of->fd);