Skip to content
Snippets Groups Projects
Commit 5fde8e85 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont
Browse files

smf: offset is always positive, fix warnings

parent 8bb41781
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,7 @@ static int32_t ReadVarInt (stream_t *s)
typedef struct smf_track_t
{
uint64_t next; /*< Time of next message (in term of pulses) */
int64_t start; /*< Start offset in the file */
uint64_t start; /*< Start offset in the file */
uint32_t length; /*< Bytes length */
uint32_t offset; /*< Read offset relative to the start offset */
uint8_t running_event; /*< Running (previous) event */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment