aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPo Lu2023-05-31 11:50:21 +0800
committerPo Lu2023-05-31 11:51:24 +0800
commitb1f606f86375084d6e56b830953005caf1027eeb (patch)
treea30fcf1bebc3094aff6a1a927644549844597b42 /src
parent456095ed3129f7ce2fe1ff019ea5d912a69ed2a1 (diff)
downloademacs-b1f606f86375084d6e56b830953005caf1027eeb.tar.gz
emacs-b1f606f86375084d6e56b830953005caf1027eeb.zip
; * src/android.c (android_copy_area): Pacify compiler warning.
Diffstat (limited to 'src')
-rw-r--r--src/android.c3
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. */