|
From: <pst...@us...> - 2013-03-17 13:15:28
|
Revision: 960
http://sourceforge.net/p/jazzplusplus/code/960
Author: pstieber
Date: 2013-03-17 13:15:25 +0000 (Sun, 17 Mar 2013)
Log Message:
-----------
Changed a long to an int. These are the same size in 32-bit Windows and Linux compilers.
Modified Paths:
--------------
trunk/jazz/src/AsciiMidiFile.cpp
Modified: trunk/jazz/src/AsciiMidiFile.cpp
===================================================================
--- trunk/jazz/src/AsciiMidiFile.cpp 2013-03-17 13:11:21 UTC (rev 959)
+++ trunk/jazz/src/AsciiMidiFile.cpp 2013-03-17 13:15:25 UTC (rev 960)
@@ -53,7 +53,7 @@
{
JZEvent* pEvent = 0;
- long Clock;
+ int Clock;
int StatusByte, Channel, Length;
mIfs >> Clock >> StatusByte >> Channel >> Length;
if (mIfs.fail())
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|