diff options
author | Marius Kintel <marius@kintel.net> | 2011-01-21 19:28:20 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-01-21 19:28:20 (GMT) |
commit | 6a9744d80a070cc0dd47b476ebd71a32613e9fe4 (patch) | |
tree | 0fc9453dcafdd2557dd3c5c2f41c25d03c52c530 | |
parent | 1b62870ca283f6f08969c9cc150cacf943c25dc5 (diff) | |
parent | 35d4f4733d623e405f7d332a1ab8f83dcb8c4a8a (diff) |
Merge branch 'master' of github.com:openscad/openscad
-rw-r--r-- | scripts/chrpath_linux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/chrpath_linux.c b/scripts/chrpath_linux.c index 000244a..685913c 100644 --- a/scripts/chrpath_linux.c +++ b/scripts/chrpath_linux.c @@ -476,7 +476,7 @@ elf_open(const char *filename, int flags, Elf_Ehdr *ehdr) if (ehdr->e_phentsize != sizeof(Elf_Phdr)) { fprintf(stderr, "section size was read as %d, not %d!\n", - ehdr->e_phentsize, sizeof(Elf_Phdr)); + ehdr->e_phentsize, (int)sizeof(Elf_Phdr)); close(fd); return -1; } |