diff options
| author | Po Lu | 2023-05-31 11:50:21 +0800 |
|---|---|---|
| committer | Po Lu | 2023-05-31 11:51:24 +0800 |
| commit | b1f606f86375084d6e56b830953005caf1027eeb (patch) | |
| tree | a30fcf1bebc3094aff6a1a927644549844597b42 /src | |
| parent | 456095ed3129f7ce2fe1ff019ea5d912a69ed2a1 (diff) | |
| download | emacs-b1f606f86375084d6e56b830953005caf1027eeb.tar.gz emacs-b1f606f86375084d6e56b830953005caf1027eeb.zip | |
; * src/android.c (android_copy_area): Pacify compiler warning.
Diffstat (limited to 'src')
| -rw-r--r-- | src/android.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/android.c b/src/android.c index 9d1399f3fc2..625253bdfe0 100644 --- a/src/android.c +++ b/src/android.c | |||
| @@ -4799,6 +4799,9 @@ android_copy_area (android_drawable src, android_drawable dest, | |||
| 4799 | case ANDROID_GC_XOR: | 4799 | case ANDROID_GC_XOR: |
| 4800 | do_blit = android_blit_xor; | 4800 | do_blit = android_blit_xor; |
| 4801 | break; | 4801 | break; |
| 4802 | |||
| 4803 | default: | ||
| 4804 | emacs_abort (); | ||
| 4802 | } | 4805 | } |
| 4803 | 4806 | ||
| 4804 | /* Load the bounds of the destination rectangle. */ | 4807 | /* Load the bounds of the destination rectangle. */ |