diff options
| author | Eli Zaretskii | 2019-07-03 10:20:20 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2019-07-03 10:20:20 +0300 |
| commit | b5de191e8782ae857a74e0dd4293032c0dd68b11 (patch) | |
| tree | c32b19322d620ad52838e713084e8dfad03687ca /src | |
| parent | 14563dc10a9ef9483d21ccc149bc36e4d9cb8bbd (diff) | |
| download | emacs-b5de191e8782ae857a74e0dd4293032c0dd68b11.tar.gz emacs-b5de191e8782ae857a74e0dd4293032c0dd68b11.zip | |
Fix compiler warnings due to a recent commit
* src/xdisp.c (expose_window, expose_frame): Avoid compilation
warnings about printing unsigned values with %d.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xdisp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index c13a950e3a6..5fb690e746d 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -32530,7 +32530,7 @@ expose_window (struct window *w, const Emacs_Rectangle *fr) | |||
| 32530 | struct glyph_row *row; | 32530 | struct glyph_row *row; |
| 32531 | struct glyph_row *first_overlapping_row, *last_overlapping_row; | 32531 | struct glyph_row *first_overlapping_row, *last_overlapping_row; |
| 32532 | 32532 | ||
| 32533 | redisplay_trace ("expose_window (%d, %d, %d, %d)\n", | 32533 | redisplay_trace ("expose_window (%d, %d, %u, %u)\n", |
| 32534 | r.x, r.y, r.width, r.height); | 32534 | r.x, r.y, r.width, r.height); |
| 32535 | 32535 | ||
| 32536 | /* Convert to window coordinates. */ | 32536 | /* Convert to window coordinates. */ |
| @@ -32719,7 +32719,7 @@ expose_frame (struct frame *f, int x, int y, int w, int h) | |||
| 32719 | r.height = h; | 32719 | r.height = h; |
| 32720 | } | 32720 | } |
| 32721 | 32721 | ||
| 32722 | redisplay_trace ("expose_frame (%d, %d, %d, %d)\n", | 32722 | redisplay_trace ("expose_frame (%d, %d, %u, %u)\n", |
| 32723 | r.x, r.y, r.width, r.height); | 32723 | r.x, r.y, r.width, r.height); |
| 32724 | mouse_face_overwritten_p = expose_window_tree (XWINDOW (f->root_window), &r); | 32724 | mouse_face_overwritten_p = expose_window_tree (XWINDOW (f->root_window), &r); |
| 32725 | 32725 | ||