Description: Fix int-to-pointer-cast GCC warning Author: Yavor Doganov Bug-Debian: https://bugs.debian.org/749796 Forwarded: https://savannah.nongnu.org/bugs/?52616 Last-Update: 2017-12-07 --- --- terminal.app.orig/TerminalView.m +++ terminal.app/TerminalView.m @@ -2009,7 +2009,7 @@ } rl=[NSRunLoop currentRunLoop]; - [rl addEvent: (void *)master_fd + [rl addEvent: (void *)(intptr_t)master_fd type: ET_RDESC watcher: self forMode: NSDefaultRunLoopMode];