am c21a08f: gps: Fix missing return value in android_location_GpsLocatio

Merge commit 'c21a08f747f6fd1d7b8c98176ff70abc57cf58a0'

* commit 'c21a08f747f6fd1d7b8c98176ff70abc57cf58a0':
  gps: Fix missing return value in android_location_GpsLocationProvider_init
This commit is contained in:
Mike Lockwood
2009-04-30 12:34:13 -07:00
committed by The Android Open Source Project

View File

@@ -155,6 +155,7 @@ static jboolean android_location_GpsLocationProvider_init(JNIEnv* env, jobject o
sGpsSuplInterface = (const GpsSuplInterface*)sGpsInterface->get_extension(GPS_SUPL_INTERFACE);
if (sGpsSuplInterface)
sGpsSuplInterface->init(&sGpsSuplCallbacks);
return true;
}
static void android_location_GpsLocationProvider_disable(JNIEnv* env, jobject obj)