File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ enum {
147
147
#endif // DISPATCH_IO_DEBUG
148
148
149
149
#define _dispatch_fd_debug (msg , fd , ...) \
150
- _dispatch_io_log("fd[0x%x ]: " msg, fd, ##__VA_ARGS__)
150
+ _dispatch_io_log("fd[0x%" PRIx64 " ]: " msg, fd, ##__VA_ARGS__)
151
151
#define _dispatch_op_debug (msg , op , ...) \
152
152
_dispatch_io_log("op[%p]: " msg, op, ##__VA_ARGS__)
153
153
#define _dispatch_channel_debug (msg , channel , ...) \
@@ -1387,7 +1387,7 @@ _dispatch_fd_entry_create_with_fd(dispatch_fd_t fd, uintptr_t hash)
1387
1387
// On fds lock queue
1388
1388
dispatch_fd_entry_t fd_entry = _dispatch_fd_entry_create (
1389
1389
_dispatch_io_fds_lockq );
1390
- _dispatch_fd_entry_debug ("create: fd %d" , fd_entry , fd );
1390
+ _dispatch_fd_entry_debug ("create: fd %" PRId64 , fd_entry , fd );
1391
1391
fd_entry -> fd = fd ;
1392
1392
TAILQ_INSERT_TAIL (& _dispatch_io_fds [hash ], fd_entry , fd_list );
1393
1393
fd_entry -> barrier_queue = dispatch_queue_create (
You can’t perform that action at this time.
0 commit comments