diff options
| author | Zhehao Lin | 2022-01-01 16:19:49 +0800 |
|---|---|---|
| committer | Eli Zaretskii | 2022-01-01 11:57:42 +0200 |
| commit | 8d3fc7ec897b1da7691c65e5a38f54cbb8156a9d (patch) | |
| tree | 7b3952feccf46c5188ee2dd8b979c1f48a0f4c53 /src | |
| parent | 19dcb237b5b02b36580294ab309124f346a66024 (diff) | |
| download | emacs-8d3fc7ec897b1da7691c65e5a38f54cbb8156a9d.tar.gz emacs-8d3fc7ec897b1da7691c65e5a38f54cbb8156a9d.zip | |
* src/xfaces.c (face_for_font): Make 'hash' be uintptr_t.
Copyright-paperwork-exempt: yes
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfaces.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index 2bf24da7fc9..b9fb7c0ac1e 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -4824,7 +4824,7 @@ face_for_font (struct frame *f, Lisp_Object font_object, | |||
| 4824 | struct face *base_face) | 4824 | struct face *base_face) |
| 4825 | { | 4825 | { |
| 4826 | struct face_cache *cache = FRAME_FACE_CACHE (f); | 4826 | struct face_cache *cache = FRAME_FACE_CACHE (f); |
| 4827 | unsigned hash; | 4827 | uintptr_t hash; |
| 4828 | int i; | 4828 | int i; |
| 4829 | struct face *face; | 4829 | struct face *face; |
| 4830 | 4830 | ||