diff options
Diffstat (limited to 'Tests/VSNsightTegra/jni/second.c')
-rw-r--r-- | Tests/VSNsightTegra/jni/second.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/Tests/VSNsightTegra/jni/second.c b/Tests/VSNsightTegra/jni/second.c index 4631848..12fcdb6 100644 --- a/Tests/VSNsightTegra/jni/second.c +++ b/Tests/VSNsightTegra/jni/second.c @@ -17,11 +17,8 @@ #include "first.h" #include <jni.h> -jint -Java_com_example_twolibs_TwoLibs_add( JNIEnv* env, - jobject this, - jint x, - jint y ) +jint Java_com_example_twolibs_TwoLibs_add(JNIEnv* env, jobject this, jint x, + jint y) { - return first(x, y); + return first(x, y); } |