aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2015-12-13 16:25:39 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2015-12-13 16:25:39 +0000
commit807731bfa53c1cb96cbf7094b503154fd724f6ba (patch)
tree3e6e0a202829521e0a4f641a473e5553b3997e0e /src
parentfbffd280a980980fb7238a6ec0d4e6f05ded8b74 (diff)
downloadqmmp-807731bfa53c1cb96cbf7094b503154fd724f6ba.tar.gz
qmmp-807731bfa53c1cb96cbf7094b503154fd724f6ba.tar.bz2
qmmp-807731bfa53c1cb96cbf7094b503154fd724f6ba.zip
fixed gcc warning
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@5824 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src')
-rw-r--r--src/qmmp/outputwriter.cpp3
-rw-r--r--src/qmmp/qmmpaudioengine_p.h2
2 files changed, 3 insertions, 2 deletions
diff --git a/src/qmmp/outputwriter.cpp b/src/qmmp/outputwriter.cpp
index 3a9237faf..c14cbe9c8 100644
--- a/src/qmmp/outputwriter.cpp
+++ b/src/qmmp/outputwriter.cpp
@@ -346,7 +346,8 @@ void OutputWriter::run()
bool done = false;
Buffer *b = 0;
- qint64 l, m = 0;
+ quint64 l;
+ qint64 m = 0;
dispatch(Qmmp::Playing);
diff --git a/src/qmmp/qmmpaudioengine_p.h b/src/qmmp/qmmpaudioengine_p.h
index 6748d1a2e..fc205ed6d 100644
--- a/src/qmmp/qmmpaudioengine_p.h
+++ b/src/qmmp/qmmpaudioengine_p.h
@@ -82,7 +82,7 @@ private:
bool m_done, m_finish, m_user_stop;
uint m_bks;
qint64 m_seekTime;
- qint64 m_output_at, m_output_size;
+ quint64 m_output_at, m_output_size;
int m_bitrate;
unsigned char *m_output_buf;
Decoder *m_decoder;