Merge "Fix "ordered comparison between pointer and zero"." am: a844bc9649

am: 08c4130493

Change-Id: I27e56f2771c2f618c81b31bf8f36ccd5dc859a27
This commit is contained in:
Tao Bao
2016-11-14 18:35:54 +00:00
committed by android-build-merger

View File

@@ -269,7 +269,7 @@ int res_create_multi_display_surface(const char* name, int* frames, int* fps,
printf(" found fps = %d\n", *fps);
}
if (frames <= 0 || fps <= 0) {
if (*frames <= 0 || *fps <= 0) {
printf("bad number of frames (%d) and/or FPS (%d)\n", *frames, *fps);
result = -10;
goto exit;