diff options
author | Mathias Agopian <mathias@google.com> | 2013-03-21 21:13:21 -0700 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2013-03-21 21:14:10 -0700 |
commit | 50210b9a8d19cb90fc283d8d99e46cd34ac17d2e (patch) | |
tree | 243653511b455de4404a227539afa78192ee5661 | |
parent | 0188eeff1fecc3813ddb236be3e2b7a9ad156482 (diff) | |
download | frameworks_native-50210b9a8d19cb90fc283d8d99e46cd34ac17d2e.zip frameworks_native-50210b9a8d19cb90fc283d8d99e46cd34ac17d2e.tar.gz frameworks_native-50210b9a8d19cb90fc283d8d99e46cd34ac17d2e.tar.bz2 |
fix a typo that broke all screenshots
Bug: 8450197
Change-Id: I5b986cc0ff9c5e689d06a51ba68ab537d03d1f3d
-rw-r--r-- | services/surfaceflinger/SurfaceFlinger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/surfaceflinger/SurfaceFlinger.cpp b/services/surfaceflinger/SurfaceFlinger.cpp index 2d84c54..8149a6e 100644 --- a/services/surfaceflinger/SurfaceFlinger.cpp +++ b/services/surfaceflinger/SurfaceFlinger.cpp @@ -110,7 +110,7 @@ SurfaceFlinger::SurfaceFlinger() char value[PROPERTY_VALUE_MAX]; property_get("ro.bq.gpu_to_cpu_unsupported", value, "0"); - mGpuToCpuSupported = !!atoi(value); + mGpuToCpuSupported = !atoi(value); property_get("debug.sf.showupdates", value, "0"); mDebugRegion = atoi(value); |