mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 18:51:11 +00:00
gstdvm: Fix GST_DVM_GET_STATIC_FIELD
This commit is contained in:
parent
11b28224b5
commit
81c07b54cd
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
#define GST_DVM_STATIC_FIELD(error_statement, type, k, field) \
|
#define GST_DVM_STATIC_FIELD(error_statement, type, k, field) \
|
||||||
(*env)->Get##type##Field (env, k.klass, k.field); \
|
(*env)->GetStatic##type##Field (env, k.klass, k.field); \
|
||||||
if ((*env)->ExceptionCheck (env)) { \
|
if ((*env)->ExceptionCheck (env)) { \
|
||||||
GST_ERROR ("Failed to get Java static field"); \
|
GST_ERROR ("Failed to get Java static field"); \
|
||||||
(*env)->ExceptionDescribe (env); \
|
(*env)->ExceptionDescribe (env); \
|
||||||
|
|
Loading…
Reference in a new issue