summaryrefslogtreecommitdiff
path: root/libs/evoral/src/libsmf/smf_private.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-02-14 22:22:55 +0000
committerDavid Robillard <d@drobilla.net>2009-02-14 22:22:55 +0000
commit8249cfb6a7335c6f2729bbfcf80948827936db3a (patch)
tree8e6ca789529fc4e4419f99cea387454dd2e69453 /libs/evoral/src/libsmf/smf_private.h
parent464d3d3ab4581047729042faf48ecffafd1b914e (diff)
Fix types to be warning clean on 64 bit.
git-svn-id: svn://localhost/ardour2/branches/3.0@4560 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/evoral/src/libsmf/smf_private.h')
-rw-r--r--libs/evoral/src/libsmf/smf_private.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/evoral/src/libsmf/smf_private.h b/libs/evoral/src/libsmf/smf_private.h
index 0cd273e73a..537a29b889 100644
--- a/libs/evoral/src/libsmf/smf_private.h
+++ b/libs/evoral/src/libsmf/smf_private.h
@@ -71,7 +71,7 @@ void smf_init_tempo(smf_t *smf);
void smf_fini_tempo(smf_t *smf);
void smf_create_tempo_map_and_compute_seconds(smf_t *smf);
void maybe_add_to_tempo_map(smf_event_t *event);
-void remove_last_tempo_with_pulses(smf_t *smf, int pulses);
+void remove_last_tempo_with_pulses(smf_t *smf, size_t pulses);
int smf_event_is_tempo_change_or_time_signature(const smf_event_t *event) WARN_UNUSED_RESULT;
int smf_event_length_is_valid(const smf_event_t *event) WARN_UNUSED_RESULT;
int is_status_byte(const unsigned char status) WARN_UNUSED_RESULT;