diff options
author | ace20022 <ace20022@xbmc.org> | 2015-12-01 14:11:05 +0100 |
---|---|---|
committer | ace20022 <ace20022@xbmc.org> | 2015-12-02 10:20:12 +0100 |
commit | af614c1dfe3f69cd1fd1d43bd60606e586d5ca68 (patch) | |
tree | 59628bbea544f918ae1658f7db85761fc7b25c39 | |
parent | 4cd7e75624d3704795456c5fbd5e3aa337710d29 (diff) |
[AMLUtils] Suspicious use of ; at the end of 'if' statement.
-rw-r--r-- | xbmc/utils/AMLUtils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/utils/AMLUtils.cpp b/xbmc/utils/AMLUtils.cpp index 7f7ab622bb..8ad965e582 100644 --- a/xbmc/utils/AMLUtils.cpp +++ b/xbmc/utils/AMLUtils.cpp @@ -306,7 +306,7 @@ bool aml_IsHdmiConnected() { int hpd_state; SysfsUtils::GetInt("/sys/class/amhdmitx/amhdmitx0/hpd_state", hpd_state); - if (hpd_state == 2); + if (hpd_state == 2) { return 1; } |