Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e67bc0c9 authored by Chih-Hung Hsieh's avatar Chih-Hung Hsieh Committed by Gerrit Code Review
Browse files

Merge "Fix log call output format error. (DO NOT MERGE)"

parents e4625cc1 e07c9f14
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -290,7 +290,7 @@ static jlong init_timerfd()

    epollfd = epoll_create(N_ANDROID_TIMERFDS);
    if (epollfd < 0) {
        ALOGV("epoll_create(%u) failed: %s", N_ANDROID_TIMERFDS,
        ALOGV("epoll_create(%zu) failed: %s", N_ANDROID_TIMERFDS,
                strerror(errno));
        return 0;
    }
+1 −1
Original line number Diff line number Diff line
@@ -1244,7 +1244,7 @@ static void nativeVibrate(JNIEnv* env,

    size_t patternSize = env->GetArrayLength(patternObj);
    if (patternSize > MAX_VIBRATE_PATTERN_SIZE) {
        ALOGI("Skipped requested vibration because the pattern size is %d "
        ALOGI("Skipped requested vibration because the pattern size is %zd "
                "which is more than the maximum supported size of %d.",
                patternSize, MAX_VIBRATE_PATTERN_SIZE);
        return; // limit to reasonable size