Merge: Fix C compiler warning on Java FFI and Android apps
authorJean Privat <jean@pryen.org>
Mon, 11 May 2015 23:22:55 +0000 (19:22 -0400)
committerJean Privat <jean@pryen.org>
Mon, 11 May 2015 23:22:55 +0000 (19:22 -0400)
commit5cdb506af4f2f4c6e8fb7ca9e9e87af55dd7458a
tree89b3e5285bba951f369542e9bf936dce84217aad
parent80f4c6114b5d12bef0b49c9a613b0798ed3da402
parent63c54435e6eaaeba0fe76573e4e8f210fef5c7c4
Merge: Fix C compiler warning on Java FFI and Android apps

The generated C code used `static JNIEXPORT`, when the macro was expanded it duplicated the visibility attribute. It was reported by the C compiler as a warning. This PR removes the `static` part.

Pull-Request: #1327
Reviewed-by: Jean Privat <jean@pryen.org>
Reviewed-by: Romain Chanoir <chanoir.romain@courrier.uqam.ca>