btrfs-progs: Fix pointer math in __ino_to_path_fd
authorMark Fasheh <mfasheh@suse.de>
Thu, 14 Feb 2013 18:29:50 +0000 (10:29 -0800)
committerDavid Sterba <dsterba@suse.cz>
Tue, 19 Feb 2013 10:15:30 +0000 (11:15 +0100)
commit3b85739dd6c63c8f94f87d6574494919d2c1119f
tree2fd7faa3e3bf3251ed59d5ce10cb2e6bede805ec
parentd065d63057c249e109159d0620ce461954b1bc73
btrfs-progs: Fix pointer math in __ino_to_path_fd

We are casting an array of u64 values into a char ** array so
when we dereference this array (as a char **) on a 32 bit system
we're then re-casting that back to a 32 bit value. This causes
problems when we try to print those strings.

Signed-off-by: Mark Fasheh <mfasheh@suse.de>
cmds-inspect.c