aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormontellese <montellese@xbmc.org>2014-02-17 21:38:41 +0100
committermontellese <montellese@xbmc.org>2014-02-17 21:42:47 +0100
commit79c0433e512d6e599d306c3b9d1add7a855bcf4e (patch)
treed110326e6187f7209afa658bfaea8874598e23e3
parenta5dd0866c408009b0db5219db93e73f7281a9ada (diff)
upnp: fix indentation in player after previous commit
-rw-r--r--xbmc/network/upnp/UPnPPlayer.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/xbmc/network/upnp/UPnPPlayer.cpp b/xbmc/network/upnp/UPnPPlayer.cpp
index c9fa211f7a..5a73d41514 100644
--- a/xbmc/network/upnp/UPnPPlayer.cpp
+++ b/xbmc/network/upnp/UPnPPlayer.cpp
@@ -261,14 +261,14 @@ int CUPnPPlayer::PlayFile(const CFileItem& file, const CPlayerOptions& options,
if (m_delegate->m_trainfo.cur_transport_state != "NO_MEDIA_PRESENT" &&
m_delegate->m_trainfo.cur_transport_state != "STOPPED")
{
- timeout.Set(timeout.GetInitialTimeoutValue());
- /* dlna specifies that a return code of 705 should be returned
- * if TRANSPORT_STATE is not STOPPED or NO_MEDIA_PRESENT */
- NPT_CHECK_LABEL_SEVERE(m_control->Stop(m_delegate->m_device
- , m_delegate->m_instance
- , m_delegate), failed);
- NPT_CHECK_LABEL_SEVERE(WaitOnEvent(m_delegate->m_resevent, timeout, dialog), failed);
- NPT_CHECK_LABEL_SEVERE(m_delegate->m_resstatus, failed);
+ timeout.Set(timeout.GetInitialTimeoutValue());
+ /* dlna specifies that a return code of 705 should be returned
+ * if TRANSPORT_STATE is not STOPPED or NO_MEDIA_PRESENT */
+ NPT_CHECK_LABEL_SEVERE(m_control->Stop(m_delegate->m_device
+ , m_delegate->m_instance
+ , m_delegate), failed);
+ NPT_CHECK_LABEL_SEVERE(WaitOnEvent(m_delegate->m_resevent, timeout, dialog), failed);
+ NPT_CHECK_LABEL_SEVERE(m_delegate->m_resstatus, failed);
}