diff options
author | Jari Vetoniemi <mailroxas@gmail.com> | 2018-02-25 15:35:40 +0200 |
---|---|---|
committer | Jari Vetoniemi <mailroxas@gmail.com> | 2018-02-25 15:35:40 +0200 |
commit | 73001513015f3dcbcd9172ee3bc4686a1e983bcb (patch) | |
tree | c22b94cb38d6cadba1ea2bee87a1b972579a0d5b /src | |
parent | 3d92e1bae87199337cc4b7778a86dee24aed42a5 (diff) |
android: Don't assert all params
This function is not very well documented.
Diffstat (limited to 'src')
-rw-r--r-- | src/libandroid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libandroid.c b/src/libandroid.c index c8bafa9..e03bc9d 100644 --- a/src/libandroid.c +++ b/src/libandroid.c @@ -508,7 +508,7 @@ ANativeWindow_setBuffersGeometry(struct ANativeWindow *window, int32_t width, in int32_t ANativeWindow_lock(struct ANativeWindow *window, struct ANativeWindow_Buffer *outBuffer, struct ARect *inOutDirtyBounds) { - assert(window && outBuffer && inOutDirtyBounds); + assert(window); return 0; } |