[platforms/hwcomposer] Fix indent to use space instead of tab

GIT_SILENT
remotes/origin/bshah/hwcomposer_testing
Bhushan Shah 9 years ago
parent f906e21f3d
commit 71b6ebcfef
  1. 14
      plugins/platforms/hwcomposer/hwcomposer_backend.cpp

@ -223,13 +223,13 @@ void HwcomposerBackend::init()
// unblank, setPowerMode?
m_device = hwcDevice;
m_hwcVersion = m_device->common.version;
if ((m_hwcVersion & 0xffff0000) == 0) {
// Assume header version is always 1
uint32_t header_version = 1;
// Legacy version encoding
m_hwcVersion = (m_hwcVersion << 16) | header_version;
}
m_hwcVersion = m_device->common.version;
if ((m_hwcVersion & 0xffff0000) == 0) {
// Assume header version is always 1
uint32_t header_version = 1;
// Legacy version encoding
m_hwcVersion = (m_hwcVersion << 16) | header_version;
}
// register callbacks
hwc_procs_t *procs = new hwc_procs_t;

Loading…
Cancel
Save